Guest User

Untitled

a guest
Aug 21st, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <button type="button" class="btn btn-dark" onclick="countdown()">Start! <i class="fas fa-stopwatch"></i></button>
  2. <script>
  3. function countdown() {
  4. $.ajax({
  5. type: "POST",
  6. url: 'countdown.php'
  7. }
  8. });
  9. }
  10. </script>
  11. <iframe class="mt-1 ml-1" src="countdown.php" frameBorder="0" style="width: 13rem;"></iframe>
  12.  
  13. <?php
  14. echo '
  15. <p>Time left: </p>
  16. <h2 id="countdown"><span id="time">/</span></h2>
  17. <script>
  18. var time = 20;
  19. var tick = new Audio("../sounds/tick.wav");
  20. var timer = setInterval(function(){
  21. if (time > 0) {
  22. time = time - 1;
  23. tick.play();
  24. document.getElementById("countdown").innerHTML = time;
  25. }
  26. if (time == 0) {
  27. var audio = new Audio("../sounds/zig.wav");
  28. audio.play();
  29. }
  30. },1000);
  31. }
  32. </script>
  33. ';
  34. }
  35. ?>
Add Comment
Please, Sign In to add comment