Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
352
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset='utf-8'>
  5. <title>AlternatingImages</title>
  6. <script type="text/javascript" src="jquery.js"</script>
  7. </head>
  8.  
  9. <body>
  10.  
  11. <style type="text/css">
  12. #banners
  13. {
  14. position:relative;
  15. }
  16. #banners img
  17. {
  18. position:absolute;
  19. z-index:1;
  20. }
  21. #banners img.active
  22. {
  23. z-index:3;
  24. }
  25. </style>
  26.  
  27. <div id="banners">
  28. <img src="1.jpg" class="active" />
  29. <img src="2.jpg" />
  30. <img src="3.jpg" />
  31. </div>
  32.  
  33. <script type="text/javascript">
  34. $(document).ready(function()
  35. {
  36. setInterval(function()
  37. {
  38. var active = $('#banners .active');
  39.  
  40. if(active.next().length > 0)
  41. var next = active.next();
  42. else
  43. var next = $('#banners img:first');
  44.  
  45. next.css('z-index','2');
  46.  
  47. active.fadeOut(1000,function()
  48. {
  49. active.css('z-index','1').show().removeClass('active');
  50.  
  51. next.css('z-index','3').addClass('active');
  52. });
  53. },3000);
  54. });
  55. </script>
  56. </body>
  57. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement