-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
35 lines (30 loc) · 954 Bytes
/
script.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
$(document).ready(function() {
$(window).scroll(function() {
$(document).scrollTop() > 20 ? $(".header").addClass("header-color", 500) : $(".header").removeClass("header-color")
})
})
$(document).ready(function() {
$(".hamburger").click(function(){
$(".site-nav").toggleClass("site-nav--open")
$(this).toggleClass("hamburgerActive");
});
})
$(document).ready(function() {
$(".nav-text").click(function(){
$(".site-nav").removeClass("site-nav--open", 500)
$('.hamburger').removeClass("hamburgerActive");
});
})
$(document).ready(function() {
$("a").on("click", function(e) {
if ("" !== this.hash) {
e.preventDefault();
var a = this.hash;
$("html, body").animate({
scrollTop: $(a).offset().top
}, 800, function() {
window.location.hash = a
})
}
})
});