Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. today=new Date();
  2. jran=today.getTime();
  3. function rnd() {
  4. ia=9301;
  5. ic=49297;
  6. im=233280;
  7. jran = (jran*ia+ic) % im;
  8. return jran/(im*1.0);
  9. };
  10. function rand(number) {
  11. return Math.ceil(rnd()*number);
  12. };
  13. document.write("<center>");
  14. for(i=1;i<=1;i++) {
  15. myNum=(rand(3)); //改成你要隨機顯示的圖片數;
  16. if(myNum == 1) document.write("<img src='https://cdn.discordapp.com/attachments/491696292414881802/681548506208796719/FB_IMG_1582558097264.jpg'>"); //圖片路徑,可用http://
  17. if(myNum == 2) document.write("<img src='https://cdn.discordapp.com/attachments/612817863954399233/680401727576473630/4T8PIpCAfmnPTJa1zJro7q.png'>");
  18. if(myNum == 3) document.write("<img src='images/jk_03.jpg'>");
  19. else {
  20. document.write();
  21. }
  22. };
  23. document.write("</center>");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement