Last active
August 29, 2015 14:13
-
-
Save jasonnathan/b060e7538baecc436abf to your computer and use it in GitHub Desktop.
HTML Layout for zoomable user interface
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--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