forked from mrathon/singapore2024
-
Notifications
You must be signed in to change notification settings - Fork 1
/
site.js
162 lines (135 loc) · 4.57 KB
/
site.js
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
$.extend($.easing,
{
def: 'easeOutQuad',
easeInOutExpo: function (x, t, b, c, d) {
if (t==0) return b;
if (t==d) return b+c;
if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
}
});
(function( $ ) {
var settings;
var disableScrollFn = false;
var navItems;
var navs = {}, sections = {};
function getResponsiveOffset() {
var width = $(window).width();
if (width > 1024) {
return 170; // Desktop offset
} else if (width > 768) {
return 120; // Tablet offset
} else {
return 70; // Mobile offset
}
}
$.fn.navScroller = function(options) {
settings = $.extend({
scrollToOffset: getResponsiveOffset(),
scrollSpeed: 800,
activateParentNode: true,
}, options );
navItems = this;
// Attach click listeners
navItems.on('click', function(event){
event.preventDefault();
var navID = $(this).attr("href").substring(1);
disableScrollFn = true;
activateNav(navID);
populateDestinations(); // Recalculate these!
$('html,body').animate({
scrollTop: sections[navID] - settings.scrollToOffset
}, settings.scrollSpeed, "easeInOutExpo", function(){
disableScrollFn = false;
});
});
// Populate lookup of clickable elements and destination sections
populateDestinations();
// Setup scroll listener
$(document).scroll(function(){
if (disableScrollFn) { return; }
var page_height = $(window).height();
var pos = $(this).scrollTop();
for (i in sections) {
if ((pos + settings.scrollToOffset >= sections[i]) && sections[i] < pos + page_height){
activateNav(i);
}
}
});
// Update the offset when the window is resized
$(window).resize(function() {
settings.scrollToOffset = getResponsiveOffset();
populateDestinations(); // Recalculate section positions on resize
});
};
function populateDestinations() {
navItems.each(function(){
var scrollID = $(this).attr('href').substring(1);
navs[scrollID] = (settings.activateParentNode) ? this.parentNode : this;
sections[scrollID] = $(document.getElementById(scrollID)).offset().top;
});
}
function activateNav(navID) {
for (nav in navs) { $(navs[nav]).removeClass('active'); }
$(navs[navID]).addClass('active');
}
})( jQuery );
$(document).ready(function () {
// Initialize the side navigation for mobile
$(".button-collapse").sideNav();
// Initialize navScroller for smooth scrolling in nav items
$('nav li a').navScroller();
// Section divider icon click gently scrolls to reveal the section
$(".sectiondivider").on('click', function(event) {
$('html,body').animate({scrollTop: $(event.target.parentNode).offset().top - 50}, 400, "linear");
});
// Links going to other sections nicely scroll
$(".container a").each(function(){
if ($(this).attr("href").charAt(0) == '#'){
$(this).on('click', function(event) {
// No event.preventDefault() here
var target = $(event.target).closest("a");
var targetHight = $(target.attr("href")).offset().top;
$('html,body').animate({scrollTop: targetHight - 170}, 800, "easeInOutExpo");
});
}
});
// Initialize carousel with Slick settings
$('.partners').slick({
slidesToShow: 4,
slidesToScroll: 2,
autoplay: true,
arrows: true,
dots: true,
responsive: [
{
breakpoint: 976,
settings: {
slidesToShow: 4,
slidesToScroll: 6
}
}
]
});
});
// Call Gridder
$('.gridder').gridderExpander({
scroll: true,
scrollOffset: 60,
scrollTo: "panel", // panel or listitem
animationSpeed: 400,
animationEasing: "easeInOutExpo",
showNav: true,
nextText: "<i class=\"fa fa-arrow-right\"></i>",
prevText: "<i class=\"fa fa-arrow-left\"></i>",
closeText: "<i class=\"fa fa-times\"></i>",
onStart: function () {
console.log("Gridder Inititialized");
},
onContent: function () {
console.log("Gridder Content Loaded");
},
onClosed: function () {
console.log("Gridder Closed");
}
});