-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathscript.js
48 lines (38 loc) · 948 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
36
37
38
39
40
41
42
43
44
45
46
47
48
$(function () {
var $html = $('html').filter(':first'),
$menuButton = $('#open-menu'),
$viewport = $('html, body'),
body = document.getElementsByTagName('body')[0];
function adjustHeight() {
var newBodyHeight = $('.active').outerHeight() + 50;
body.style.cssText = 'height: ' + newBodyHeight + 'px;';
}
adjustHeight();
$menuButton.click(function (e) {
e.preventDefault();
if ($(window).scrollTop() !== 0) {
$(window).scrollTop(0);
}
$html.toggleClass('menu-open');
body.style.cssText = '';
});
$('section').click(function () {
var $this = $(this);
if (!$html.hasClass('menu-open')) {
return;
}
if ($(window).scrollTop() !== 0) {
$(window).scrollTop(0);
}
if ($this.hasClass('active')) {
$html.removeClass('menu-open');
adjustHeight();
}
else {
$('.active').removeClass('active');
$this.addClass('active');
$html.removeClass('menu-open');
adjustHeight();
}
});
});