D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
kibalegroup
/
public_html
/
js
/
Filename :
main.js
back
Copy
(function ($) { "use strict"; /* Preloader ------------------------------ */ setTimeout(function () { $('#preloader').fadeToggle(); }, 1500); /* Tooltip ------------------------------ */ $(document).ready(function(){ $('[data-toggle="tooltip"]').tooltip(); }); /* Countdown Clock ------------------------------ */ function makeTimer() { var endTime = new Date("01 June 2020 10:45:00 GMT+01:00"); endTime = (Date.parse(endTime) / 1000); var now = new Date(); now = (Date.parse(now) / 1000); var timeLeft = endTime - now; var days = Math.floor(timeLeft / 86400); var hours = Math.floor((timeLeft - (days * 86400)) / 3600); var minutes = Math.floor((timeLeft - (days * 86400) - (hours * 3600 )) / 60); var seconds = Math.floor((timeLeft - (days * 86400) - (hours * 3600) - (minutes * 60))); if (hours < "10") { hours = "0" + hours; } if (minutes < "10") { minutes = "0" + minutes; } if (seconds < "10") { seconds = "0" + seconds; } $("#days").html(days + "<h6>Days</h6>"); $("#hours").html(hours + "<h6>Hrs</h6>"); $("#minutes").html(minutes + "<h6>Min</h6>"); $("#seconds").html(seconds + "<h6>Sec</h6>"); } setInterval(function() { makeTimer(); }, 1000); /* Prognroll ------------------------------ */ $(function() { $("#scrollbar-right").prognroll({ height: 2, //Progress bar height color: "#fd6802", //Progress bar background color custom: true //If you make it true, you can add your custom div and see it's scroll progress on the page }); }); /* Expend ------------------------------ */ $(".notify-btn,.close-icon").click(function() { $("body,#scrollbar-right,.close-icon").toggleClass("active"); }); })(jQuery)