Advertisement
Guest User

html

a guest
Jul 2nd, 2016
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. </head>
  2. <body class="">
  3. <div id="wrapper">
  4. <!-- preloader -->
  5. <div id="preloader">
  6. <div id="spinner">
  7. <img src="images/preloaders/4.gif" alt="">
  8. </div>
  9. <div id="disable-preloader" class="btn btn-default btn-sm">Disable Preloader</div>
  10. </div>
  11.  
  12. <!-- start main-content -->
  13. <div class="main-content">
  14. <!-- Section: home -->
  15. <section id="home" class="bg-lightest fullscreen">
  16. <div class="display-table text-center">
  17. <div class="display-table-cell">
  18. <div class="container pt-0 pb-0"><div class="row">
  19. <div class="col-md-10 col-md-offset-1">
  20. <h1 class="font-weight-300 font-64">We Are Coming Soon</h1>
  21.  
  22. <div id="flipclock1" class="clock" style="margin:2em; width: auto; display: inline-block;"></div>
  23. <!-- FlipClock Script -->
  24. <script type="text/javascript">
  25. var clock;
  26. $(document).ready(function() {
  27. // Grab the current date
  28. var currentDate = new Date();
  29. // Set some date in the future. In this case, it's always Jan 1
  30. var futureDate = new Date(2016, 7, 2, 0, 0); //Date(year, month, day, hours, minutes, seconds, milliseconds);
  31. // Calculate the difference in seconds between the future and current date
  32. var diff = futureDate.getTime() / 100 - currentDate.getTime() / 100;
  33. // Instantiate a coutdown FlipClock
  34. clock = $('#flipclock1').FlipClock(diff, {
  35. clockFace: 'DailyCounter',
  36. countdown: true
  37. });
  38. });
  39. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement