document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <html>
  2. <head>
  3. <title>Scroller</title>
  4. <style>
  5. html,body{
  6.         margin:0px;
  7.         padding:0px;
  8. }
  9. #container{
  10.         width:600px;
  11.         height:300px;
  12.         border:1px solid #000;
  13.         top:100px;
  14.         margin:0 auto;
  15. }
  16. </style>
  17. <link href="scrollToSlide.css" rel="stylesheet">
  18. <script src="jquery.js"></script>
  19. <script src="scrollToSlide.js"></script>
  20. <script>
  21. $(document).ready(function(){
  22.         ScrollSlider("container",300,500);    
  23. });
  24. </script>
  25. </head>
  26. <body>
  27. <div id="container" class="scrollslider">
  28.         <ul>
  29.                 <li><img src="imgs/1.png" /></li>
  30.                 <li><img src="imgs/2.png" /></li>
  31.                 <li><img src="imgs/3.png" /></li>
  32.                 <li><img src="imgs/4.png" /></li>
  33.         </ul>
  34. </div>
  35. </body>
  36. </html>
');