-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollectibles.html
184 lines (180 loc) · 5.82 KB
/
collectibles.html
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css"
integrity="sha512-PgQMlq+nqFLV4ylk1gwUOgm6CtIIXkKwaIHp/PAIWHzig/lKZSEGKEysh0TCVbHJXCLN7WetD8TFecIky75ZfQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="./assets/packages/swiper/swiper-bundle.min.css"
/>
<link
rel="stylesheet"
href="./assets/packages/lightslider-master/dist/css/lightslider.css"
/>
<link rel="stylesheet" href="css/navbar.css" />
<link rel="stylesheet" href="css/collectibles.css" />
<link rel="stylesheet" href="css/gallery.css" />
<title>Home| Portfolio</title>
</head>
<body>
<!-- navbar of the page -->
<header class="container">
<!-- navbar wide screen visible part -->
<div class="dark-overlay"></div>
<nav class="navbar">
<div class="navbar-wrapper">
<a href="#" class="navbar-brand"
><img src="./assets/images/S-Logo.png" alt="Navbar Logo"
/></a>
<button class="navbar-toggler" type="button" id="navbar-toggler">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<!-- navbar collapse part -->
<div class="navbar-collapse" id="navbarcollapse">
<ul class="navbar-nav">
<li class="nav-item">
<a href="./" class="nav-link" data-name="NUTSHELL">NUTSHELL</a>
</li>
<li class="nav-item">
<a href="./projects" class="nav-link" data-name="PROJECTS"
>PROJECTS</a
>
</li>
<li class="nav-item">
<a href="./collectibles" class="nav-link" data-name="COLLECTIBLES"
>COLLECTIBLES</a
>
</li>
<li class="nav-item">
<a href="./connect" class="nav-link" data-name="CONNECT">CONNECT</a>
</li>
</ul>
</div>
</nav>
</header>
<!-- main section of the page -->
<main class="main container collectibles">
<div class="collectibles_container">
<div
class="collectibles_gallery"
style="
background-image: linear-gradient(
90deg,
rgba(0, 0, 0, 0.12) 0%,
rgba(0, 0, 0, 0.12) 100%
),
url(./assets/images/gallery_4.jpg);
"
>
<button
class="collectibles_gallery_button"
id="collectibles_gallery_open"
>
Enter Gallery
<div class="arrow_right">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="#000000"
>
<path d="M0 0h24v24H0V0z" fill="none" />
<path
d="M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8-8-8z"
/>
</svg>
</div>
</button>
</div>
</div>
<!-- under image div button -->
<button
class="collectibles_gallery_button_bottom"
id="collectibles_gallery_open"
>
Enter Gallery
<div class="arrow_right">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="#000000"
>
<path d="M0 0h24v24H0V0z" fill="none" />
<path
d="M12 4l-1.41 1.41L16.17 11H4v2h12.17l-5.58 5.59L12 20l8-8-8-8z"
/>
</svg>
</div>
</button>
</main>
<!-- footer end of the page -->
<footer class="container">
<div class="footer">
<p class="developer">
Developed By |
<a
href="https://www.facebook.com/udoyrahman980"
class="text_hover"
target="_blank"
rel="Developer"
>Udoy Rahman</a
>
</p>
<p class="copyright"><span>©</span> Studio Shafaat | 2021</p>
</div>
</footer>
<!-- scripts -->
<script src="./assets/packages/jquery/jquery-3.6.0.min.js"></script>
<script src="./assets/packages/lightslider-master/dist/js/lightslider.js"></script>
<script src="./js/script.js"></script>
<script src="./js/collectibles.js"></script>
<script>
$(document).ready(function () {
$(".slider_gallery_slider").lightSlider({
item: 5,
loop: false,
slideMove: 1,
easing: "cubic-bezier(0.25, 0, 0.25, 1)",
speed: 600,
slideMargin: 10,
responsive: [
{
breakpoint: 800,
settings: {
item: 4,
slideMove: 1,
slideMargin: 6,
},
},
{
breakpoint: 480,
settings: {
item: 4,
slideMove: 1,
},
},
],
});
});
</script>
</body>
</html>