Advertisement
Guest User

sitebentest

a guest
May 24th, 2012
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.35 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.  
  3. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4.  
  5. <!-- Created by Ben Adams 23/05/2012 -->
  6.  
  7. <html>
  8.  
  9.   <head>
  10.  
  11.     <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
  12.  
  13.     <script src="http://flesler-plugins.googlecode.com/files/jquery.scrollTo-1.4.2-min.js"></script>
  14.  
  15.     <script src="http://flesler-plugins.googlecode.com/files/jquery.localscroll-1.2.7-min.js"></script>
  16.  
  17.  
  18.  
  19. <style>
  20.  
  21. body{margin:0;font-size:13px;line-height:1.231;background:#161616}
  22.  
  23. p{color:white;}
  24.  
  25. a{color:white;text-decoration:none;}
  26.  
  27. #borderTop{position:fixed;height:50px;left:0;width:100%;background:#9dfff1;z-index:40000}
  28.  
  29. #borderTop{top:50px;}
  30.  
  31.  
  32.  
  33. #mainScreen{position:absolute;margin-left:0%; width:100%; height:100%;}
  34.  
  35.   #Basket1{position:absolute;margin-left:100%; width:100%; height:100%;}
  36.  
  37. </style>
  38.  
  39.  
  40.  
  41. <script>
  42.  
  43.       $(document).ready(function(){
  44.  
  45.         $('.ScrollLinks').localScroll({target:'body', axis:'x'});
  46.  
  47.       });
  48.  
  49.     </script>
  50.  
  51.   </head>
  52.  
  53.  
  54.  
  55.   <body>
  56.  
  57.     <div id="borderTop"></div>
  58.  
  59.    
  60.  
  61.     <div id="mainScreen">
  62.  
  63.       <a class="ScrollLinks" href="#Basket1" rel="nofollow">Link to Page 1</a>
  64.  
  65.     </div>
  66.  
  67.    
  68.  
  69.     <div id="Basket1">
  70.  
  71.       <p>Page 1</p>
  72.  
  73.     </div>
  74.  
  75.    
  76.  
  77.   </body>
  78.  
  79. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement