BrU32

JS Image Gallery Gen Random SRC

Aug 4th, 2016
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <html>
  2. <body>
  3. <button onclick="myFunction()">Try it</button>
  4. <script>
  5. function myFunction() {
  6. var Inn;
  7. var Rnd;
  8. Inn=prompt("Enter Ammount:");
  9. for(var i=0;i<Inn;i++){
  10. Rnd=Math.floor(Math.random()*Inn+1);
  11. setInterval(document.write('#'+Rnd+'. <img src='+Rnd+'.png><p>'),1000000)
  12. }
  13. }
  14. </script>
  15. </body>
  16. </html>
Advertisement
Add Comment
Please, Sign In to add comment