| Server IP : 138.197.107.151 / Your IP : 216.73.217.7 Web Server : Apache/2.4.58 (Ubuntu) System : Linux BloxBy-Builder 6.8.0-71-generic #71-Ubuntu SMP PREEMPT_DYNAMIC Tue Jul 22 16:52:38 UTC 2025 x86_64 User : wpbetasites_mrakzqskir ( 1022) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/silversharkadmindev/public/assets/js/pages/ |
Upload File : |
/*
Template Name: Skote - Admin & Dashboard Template
Author: Themesbrand
Website: https://themesbrand.com/
Contact: themesbrand@gmail.com
File: ico landing Init Js File
*/
// Sticky nav
$(window).scroll(function() {
var scroll = $(window).scrollTop();
if (scroll >= 50) {
$(".sticky").addClass("nav-sticky");
} else {
$(".sticky").removeClass("nav-sticky");
}
});
// Countdown
$('[data-countdown]').each(function () {
var $this = $(this), finalDate = $(this).data('countdown');
$this.countdown(finalDate, function (event) {
$(this).html(event.strftime(''
+ '<div class="coming-box">%D <span>Days</span></div> '
+ '<div class="coming-box">%H <span>Hours</span></div> '
+ '<div class="coming-box">%M <span>Minutes</span></div> '
+ '<div class="coming-box">%S <span>Seconds</span></div> '));
});
});
// Clients carousel
$('#clients-carousel, #team-carousel').owlCarousel({
items: 1,
loop:false,
margin:24,
nav: false,
dots: false,
responsive:{
576:{
items:2
},
768:{
items:3
},
992:{
items:4
},
}
});
// Timeline carousel
$('#timeline-carousel').owlCarousel({
items: 1,
loop: false,
margin:0,
nav: true,
navText : ["<i class='mdi mdi-chevron-left'></i>","<i class='mdi mdi-chevron-right'></i>"],
dots: false,
responsive:{
576:{
items:2
},
768:{
items:3
},
992:{
items:4
},
}
});