-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
44 lines (41 loc) · 1.16 KB
/
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
// TOGGLE MENU
$(function() {
$(".menu__toggle").click(function() {
$(".menu__items").toggleClass("menu__items--display");
$(this)
.find("a")
.html("<i class='fas fa-bars'></i>");
if ($(".menu__items").hasClass("menu__items--display")) {
$(this)
.find("a")
.html("<i class='fas fa-times'></i>");
}
});
});
// VANILLA JS SWIPER
// const slider = document.querySelector(".swiper__cards");
// let isDown = false;
// let startX;
// let scrollLeft;
// slider.addEventListener("mousedown", e => {
// isDown = true;
// slider.classList.add("active");
// startX = e.pageX - slider.offsetLeft;
// scrollLeft = slider.scrollLeft;
// });
// slider.addEventListener("mouseleave", () => {
// isDown = false;
// slider.classList.remove("active");
// });
// slider.addEventListener("mouseup", () => {
// isDown = false;
// slider.classList.remove("active");
// });
// slider.addEventListener("mousemove", e => {
// if (!isDown) return;
// e.preventDefault();
// const x = e.pageX - slider.offsetLeft;
// const walk = (x - startX) * 2; //scroll-fast
// slider.scrollLeft = scrollLeft - walk;
// console.log(walk);
// });