Advertisement
Guest User

ME TOO!

a guest
Apr 24th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. images = ["i1.jpg", "i2.jpg", "i3.png", "i4.png", "i5.png"];
  2. texts = ["Fuck", "Dr", "Sarah", "And her", "Course"];
  3. idx = 0;
  4. img1;
  5. p1;
  6. intervalId = -1;
  7. function work() {
  8.     img1.src = images[idx];
  9.     p1.innerText = texts[idx];
  10.     idx++;
  11.     idx %= images.length;
  12. }
  13. function cont() {
  14.     intervalId = setInterval(work, 3000);
  15. }
  16. function pse() {
  17.     if (intervalId === -1) { return; }
  18.     clearInterval(intervalId);
  19.     intervalId = -1;
  20. }
  21. function prepare() {
  22.     img1 = document.getElementById("img1");
  23.     p1 = document.getElementById("p1");
  24.     var btnContinue = document.querySelector("input[type=\"button\"][value=\"Continue\"]");
  25.     var btnPause = document.querySelector("input[type=\"button\"][value=\"Pause\"]");
  26.     btnContinue.onclick = cont;
  27.     btnPause.onclick = pse;
  28.     cont();
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement