coming-soon.js 662 B

12345678910111213141516171819202122232425
  1. var CoomingSoon = function () {
  2. return {
  3. //main function to initiate the module
  4. init: function () {
  5. $.backstretch([
  6. "assets/img/bg/1.jpg",
  7. "assets/img/bg/2.jpg",
  8. "assets/img/bg/3.jpg",
  9. "assets/img/bg/4.jpg"
  10. ], {
  11. fade: 1000,
  12. duration: 10000
  13. });
  14. var austDay = new Date();
  15. austDay = new Date(austDay.getFullYear() + 1, 1 - 1, 26);
  16. $('#defaultCountdown').countdown({until: austDay});
  17. $('#year').text(austDay.getFullYear());
  18. }
  19. };
  20. }();