⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.10
Server IP:
157.245.101.34
Server:
Linux skvinfotech-website 5.4.0-131-generic #147-Ubuntu SMP Fri Oct 14 17:07:22 UTC 2022 x86_64
Server Software:
Apache/2.4.41 (Ubuntu)
PHP Version:
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
skvinfotech.com
/
public
/
assets
/
_js
/
pages
/
View File Name :
op_coming_soon.js
/* * Document : op_coming_soon.js * Author : pixelcave * Description: Custom JS code used in Coming Soon Page */ class pageComingSoon { /* * Init Countdown.js, for more examples you can check out https://github.com/hilios/jQuery.countdown * */ static countdown() { jQuery('.js-countdown').countdown((new Date().getFullYear() + 2) + '/01/15', e => { jQuery(e.currentTarget).html(e.strftime('<div class="row items-push py-3 text-center">' + '<div class="col-6 col-md-3"><div class="font-size-h1 font-w700 text-white">%-D</div><div class="font-size-sm font-w700 text-muted">DAYS</div></div>' + '<div class="col-6 col-md-3"><div class="font-size-h1 font-w700 text-white">%H</div><div class="font-size-sm font-w700 text-muted">HOURS</div></div>' + '<div class="col-6 col-md-3"><div class="font-size-h1 font-w700 text-white">%M</div><div class="font-size-sm font-w700 text-muted">MINUTES</div></div>' + '<div class="col-6 col-md-3"><div class="font-size-h1 font-w700 text-white">%S</div><div class="font-size-sm font-w700 text-muted">SECONDS</div></div>' + '</div>' )); }); } /* * Init functionality * */ static init() { this.countdown(); } } // Initialize when page loads jQuery(() => { pageComingSoon.init(); });