Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <section id="home">Home</section>
  2. <section id="page1">Page 1</section>
  3. <section id="page2">Page 2</section>
  4.  
  5. html,body,section{
  6. width:100%;
  7. height:100%;
  8. margin:0;
  9. }
  10. section{
  11. position:absolute;
  12. top:0;
  13. }
  14. #page1{
  15. right:100%;
  16. }
  17. #page2{
  18. left:100%;
  19. }
  20.  
  21. var el = document.getElementById('home');
  22. el.scrollIntoView(true);
  23.  
  24. #page1{ left: 100%; }
  25. #page2{ left: 200%; }
  26.  
  27. #home { left: 100%; }
  28. #page1{ left: 0; }
  29. #page2{ left: 200%; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement