Advertisement
Guest User

Untitled

a guest
Mar 27th, 2015
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <img id='ad' style="margin-left:0%;padding:0%;" type='text' src="001.png" width="100%" height="100%"/>
  2.  
  3. <script>
  4. images = new Array;
  5. images[0] = "001.png";
  6. images[1] = "002.png";
  7. images[2] = "003.png";
  8. images[3] = "004.png";
  9. images[4] = "005.png";
  10. images[5] = "006.png";
  11. images[6] = "007.png";
  12. images[7] = "008.png";
  13. images[8] = "009.png";
  14. images[9] = "010.png";
  15.  
  16. setInterval(function() {changeImage()},80);
  17. x = 0;
  18. function changeImage() {
  19. document.getElementById('ad').src = images[x];
  20. if (x<9) {
  21. x+=1;
  22. }
  23.  
  24. else if (x=10) {
  25. x=104;
  26. }
  27. }
  28. <script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement