Skip to content

Instantly share code, notes, and snippets.

@jasonnathan
Last active August 29, 2015 14:13
Show Gist options
  • Save jasonnathan/b060e7538baecc436abf to your computer and use it in GitHub Desktop.
Save jasonnathan/b060e7538baecc436abf to your computer and use it in GitHub Desktop.
HTML Layout for zoomable user interface
<!--The master layout for a zoomable user interface.
See:
www.scriptstreet.com/building-a-zoomable-user-interface-with-meteorjs-greensock
-->
<nav>
<ul>
<li><a href="#start" id="startMenu">Start</a></li>
<li><a href="#contact" id="contactMenu">Contact</a></li>
<li><a href="#works" id="worksMenu">Start</a></li>
</ul>
</nav>
<div id="constrainContainer">
<div class="Page" id="start"></div>
<div class="Page" id="contact"></div>
<div class="Page" id="works"></div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment