mramine364

jquery marquee plugin

Jan 17th, 2016
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.45 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <meta charset="UTF-8">
  4.     <title>marquee</title>
  5.     <script src="http://code.jquery.com/jquery-latest.min.js"></script>
  6.     <script src="https://cdn.jsdelivr.net/jquery.marquee/1.3.1/jquery.marquee.min.js"></script>
  7. </head>
  8. <body>
  9.     <div class="container">
  10.         <div class='marquee'>
  11.             Hello Programmers - xyfful.
  12.         </div>
  13.     </div>
  14.     <script>
  15.         $(window).load(function() {
  16.             $('.marquee').marquee();
  17.         });
  18.     </script>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment