-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
134 lines (95 loc) · 2.59 KB
/
app.js
File metadata and controls
134 lines (95 loc) · 2.59 KB
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
// ----------------- selected elements ---------------------
const searchForm = document.querySelector('.form-search')
const searchBtn = document.querySelector('#search-btn')
// ---------------search-btn script -----------------------------------------------
searchBtn.addEventListener('click', () => {
searchForm.classList.toggle('active')
// console.log("clicked")
})
// ---------------------- login-form script ----------------------------------
const loginForm = document.querySelector('.login-form-container')
const loginBtn = document.querySelector('#login-btn')
const closeBtn = document.querySelector('#close-login-btn')
loginBtn.addEventListener('click', () => {
loginForm.classList.toggle('active')
})
closeBtn.addEventListener("click", () => {
loginForm.classList.remove('active')
})
// ----------------- swiper class script ------------------------
var swiper = new Swiper(".row-book", {
loop : true,
breakpoints: {
0: {
slidesPerView: 1,
},
768: {
slidesPerView: 2,
},
1024: {
slidesPerView: 3,
},
},
});
// listed book sider
var swiper = new Swiper(".listed-book-slider", {
loop : true,
autoplay: {
delay : 5000,
disableOnInteraction : false,
},
breakpoints: {
0: {
slidesPerView: 1,
},
450: {
slidesPerView: 2,
},
768: {
slidesPerView: 3,
},
1024: {
slidesPerView: 4,
},
},
});
// review sider
var swiper = new Swiper(".reviews-slider", {
spaceBetween : 15,
cursorGrab : true,
loop : true,
autoplay: {
delay : 6000,
disableOnInteraction : false,
},
breakpoints: {
0: {
slidesPerView: 1,
},
450: {
slidesPerView: 2,
},
768: {
slidesPerView: 3,
},
1024: {
slidesPerView: 4,
},
},
});
// -------------------------------- window scrolling script -----------------------
window.onscroll = () =>{
searchForm.classList.toggle('active')
if(window.scrollY > 80){
document.querySelector(".header .header-link").classList.add('active')
}else{
document.querySelector(".header .header-link").classList.remove('active')
}
}
window.onload = () =>{
if(window.scrollY > 80){
document.querySelector(".header .header-link").classList.add('active')
}else{
document.querySelector(".header .header-link").classList.remove('active')
}
}