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