newsdev / ai2html

A script for Adobe Illustrator that converts your Illustrator artwork into an html page.
http://ai2html.org
Other
898 stars 146 forks source link

add 'pinch to zoom' mode #39

Open gka opened 8 years ago

gka commented 8 years ago

For some charts we just have to acknowledge that there is no way to make a 300px version for phones. instead, we need an option to display a zoomed-out version of the desktop chart with a note saying "pinch to zoom".

ai2html should be aware of this option and display the note and add this code snipped to re-enable pinch-zoom:

<script>
viewport = document.querySelector("meta[name=viewport]");
viewport.setAttribute('content', 'width=device-width, initial-scale=1.0');
</script>