/*========================================================================================= File Name: coming-soon.js Description: Coming Soon ---------------------------------------------------------------------------------------- Item Name: Modern Admin - Clean Bootstrap 4 Dashboard HTML Template Author: PIXINVENT Author URL: http://www.themeforest.net/user/pixinvent ==========================================================================================*/ /******************************* * js of Countdown * ********************************/ $(document).ready(function () { var todayDate = new Date(); var dd = todayDate.getDate(); var mm = todayDate.getMonth(); var yy = todayDate.getFullYear(); if (mm >= 11) { mm = 1; yy += 1 } else { mm += 2; } var currentDate = (yy) + "/" + (mm) + "/" + dd; $('#clockImage').countdown(currentDate).on('update.countdown', function (event) { var $this = $(this).html(event.strftime('' + '
%-w

Week%!w

' + '
%d

Day%!d

' + '
%H

Hour%!H

' + '
%M

Minute%!M

' + '
%S

Second%!S

')) }); $('#clockFlat').countdown(currentDate).on('update.countdown', function (event) { var $this = $(this).html(event.strftime('' + '
%-w

Week%!w

' + '
%d

Day%!d

' + '
%H

Hour%!H

' + '
%M

Minute%!M

' + '
%S

Second%!S

')) }); $('#clockMinimal').countdown(currentDate).on('update.countdown', function (event) { var $this = $(this).html(event.strftime('' + '
%-w

Week%!w

' + '
%d

Day%!d

' + '
%H

Hour%!H

' + '
%M

Minute%!M

' + '
%S

Second%!S

')) }); // YouTube video // Uncomment following code to enable YouTube background video if ($('.comingsoonVideo').length > 0) { $('.comingsoonVideo').tubular({ videoId: 'iGpuQ0ioPrM' }); } // Custom Video // Comment / Uncomment to show / hide your custom video. Please exchange your video name and paths accordingly. // var BV = new $.BigVideo({useFlashForFirefox:false}); // BV.init(); // BV.show([ // { type: "video/mp4", src: "../../../app-assets/videos/481479901.mp4" }, // { type: "video/webm", src: "../../../app-assets/videos/481479901.webm" }, // { type: "video/ogg", src: "../../../app-assets/videos/481479901.ogv" } // ]); });