Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. function countdown(tt){
  2. var clock;
  3.  
  4. clock = $('.clock').FlipClock({
  5. clockFace: 'DailyCounter',
  6. autoStart: false,
  7. callbacks: {
  8. stop: function() {
  9. $('.message').html('The clock has stopped!')
  10. }
  11. }
  12. });
  13.  
  14. clock.setTime(tt);
  15. clock.setCountdown(true);
  16. clock.start();
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement