-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjavascript.js
More file actions
33 lines (30 loc) · 898 Bytes
/
Copy pathjavascript.js
File metadata and controls
33 lines (30 loc) · 898 Bytes
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
var Swipes = new Swiper('.swiper-container', {
direction: 'vertical',
speed: 1500,
centeredSlides: true,
loop: true,
autoplay: {
delay: 4500,
disableOnInteraction: false,
},
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
pagination: {
el: '.swiper-pagination',
clickable: true,
},
});
$(document).ready(function () {
$(".mainContainer").on("click", function () {
$(".hamburgDiv").removeClass("animate");
$(".NavbarTogle").removeClass("NavbarTogleClass")
$(".uparToggleNav").removeClass("uparToggleNavClass")
})
$(".menu,.hamburgDiv").on("click", function () {
$(".hamburgDiv").toggleClass("animate");
$(".NavbarTogle").toggleClass("NavbarTogleClass")
$(".uparToggleNav").toggleClass("uparToggleNavClass")
})
})