|
Server IP : 86.38.243.193 / Your IP : 216.73.216.42 Web Server : LiteSpeed System : Linux in-mum-web1336.main-hosting.eu 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64 User : u493057690 ( 493057690) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : ON Directory (0755) : /home/u493057690/domains/iasfindia.com/public_html/assets/plugins/counters/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
$( function() {
// default setup
$( '.timer-countdown' ).countdown( {
from: 180, // 3 minutes (3*60)
to: 0, // stop at zero
movingUnit: 1000, // 1000 for 1 second increment/decrements
timerEnd: undefined,
outputPattern: '$day Day $hour : $minute : $second',
autostart: true
} );
// count up
$( '.timer-countup' ).countdown( {
from: 0,
to: 180
} );
// count in-between
$( '.timer-countinbetween' ).countdown( {
from: 60,
to: 20
} );
// counter callback
$( '.oneminute' ).countdown( {
from: 4563210,
to: 0,
timerEnd: function() {
this.animate( { 'opacity':.5 }, 500 ).css( { 'text-decoration':'line-through' } );
}
} );
$( '.2minute' ).countdown( {
from: 236584,
to: 0,
timerEnd: function() {
this.animate( { 'opacity':.5 }, 500 ).css( { 'text-decoration':'line-through' } );
}
} );
$( '.hour' ).countdown( {
from: 342600,
to: 0,
timerEnd: function() {
this.animate( { 'opacity':.5 }, 500 ).css( { 'text-decoration':'line-through' } );
}
} );
$( '.day' ).countdown( {
from: 7856955,
to: 0,
timerEnd: function() {
this.animate( { 'opacity':.5 }, 500 ).css( { 'text-decoration':'line-through' } );
}
} );
// changed output patterns
$( '.timer-outputpattern' ).countdown( {
outputPattern: '$day Days $hour Hours $minute Miniuts $second Seconds',
from: 60 * 60 * 24 * 3
} );
} );