This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*========== Desktop First Method ==========*/ | |
/* Large Devices, Wide Screens */ | |
@media only screen and (max-width : 1200px) { | |
} | |
/* Medium Devices, Desktops */ | |
@media only screen and (max-width : 992px) { | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
//Таймер обратного отсчета | |
//Документация: http://keith-wood.name/countdown.html | |
//<div class="countdown" date-time="2015-01-07"></div> | |
var austDay = new Date($(".countdown").attr("date-time")); | |
$(".countdown").countdown({until: austDay, format: 'yowdHMS'}); | |
//Попап менеджер FancyBox | |
//Документация: http://fancybox.net/howto |