-
Notifications
You must be signed in to change notification settings - Fork 300
/
review.html
398 lines (352 loc) · 11.3 KB
/
review.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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Review</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,700">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<style>
body {
font-family: "Poppins", sans-serif;
background: #1e1e2f;
color: #e4e4e7;
padding: 0;
margin: 0;
}
h2 {
font-size: 28px;
font-weight: 700;
text-align: center;
text-transform: uppercase;
margin-top: 50px;
margin-bottom: 40px;
color: #f05454;
position: relative;
}
h2::after {
content: "";
width: 80px;
height: 4px;
background-color: #ff6b6b;
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: -15px;
}
.carousel-item {
padding: 20px;
background-color: #2b2b3c;
border-radius: 10px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
transition: all 0.3s ease;
}
.carousel-item:hover {
transform: translateY(-10px);
}
.media img {
width: 80px;
height: 80px;
border-radius: 50%;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.testimonial {
margin-left: 20px;
font-style: italic;
color: #ccc;
}
.overview {
margin-top: 10px;
font-weight: 600;
color: #f05454;
}
.progress-bar {
background-color: #f05454;
}
.services img {
width: 100%;
border-radius: 15px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}
.services h3 {
color: #f05454;
font-weight: 700;
}
.services h5 {
margin-top: 10px;
font-size: 18px;
color: #ccc;
display: flex;
align-items: center;
}
.services h5 i {
margin-right: 10px;
color: #ff6b6b;
}
.carousel-indicators li {
background-color: #444;
border-radius: 50%;
width: 12px;
height: 12px;
}
.carousel-indicators li.active {
background-color: #f05454;
}
#BacktoTop {
position: fixed;
bottom: 50px;
right: 20px;
background-color: #f05454;
color: white;
padding: 15px;
border-radius: 50%;
font-size: 18px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
transition: all 0.3s ease;
z-index: 1000;
cursor: pointer;
}
#BacktoTop:hover {
background-color: #ff6b6b;
}
.nav {
background-color: #2b2b3c;
padding: 15px;
display: flex;
align-items: center;
justify-content: center;
}
.nav img {
float: left;
margin-right: 10px; /* Adds space between the image and links */
width: 50px;
height: auto;
}
.nav a {
color: #e4e4e7;
font-weight: 600;
margin: 0 15px;
text-decoration: none;
transition: color 0.3s ease;
}
.nav a:hover {
color: #ff6b6b;
}
footer {
background-color: #2b2b3c;
padding: 30px 0;
color: #e4e4e7;
}
footer .footer-heading {
font-weight: 700;
color: #f05454;
}
footer a {
color: #e4e4e7;
text-decoration: none;
transition: color 0.3s ease;
}
footer a:hover {
color: #ff6b6b;
}
footer .social-icons i {
font-size: 24px;
margin-right: 15px;
color: #e4e4e7;
transition: color 0.3s ease;
}
footer .social-icons i:hover {
color: #ff6b6b;
}
.circle {
height: 24px;
width: 24px;
border-radius: 50%;
background-color: #ff6b6b;
position: fixed;
top: 0;
left: 0;
pointer-events: none;
z-index: 99999999;
}
</style>
</head>
<body>
<!-- Circles -->
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="nav">
<a href="index.html">
<img src="logo4.png" alt="Logo">
</a>
<a href="index.html">Home</a>
<a href="about-us.html">About-us</a>
<a href="tutorial.html">Tutorial</a>
<a href="testimonial.html">Testimonial</a>
<a href="auth.html">Sign up/in</a>
</div>
<!-- Review Section -->
<div class="container pt-5">
<h2>What <b>Our Customers</b> Are Saying</h2>
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<div class="row">
<div class="col-sm-6">
<div class="media">
<img src="https://static.vecteezy.com/system/resources/previews/009/292/244/non_2x/default-avatar-icon-of-social-media-user-vector.jpg" alt="">
<div class="media-body testimonial">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<p class="overview"><b>Paula Wilson</b>, Media Analyst</p>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="media">
<img src="https://static.vecteezy.com/system/resources/previews/009/292/244/non_2x/default-avatar-icon-of-social-media-user-vector.jpg" alt="">
<div class="media-body testimonial">
<p>Vestibulum quis quam ut magna consequat faucibus.</p>
<p class="overview"><b>Antonio Moreno</b>, Web Developer</p>
</div>
</div>
</div>
</div>
</div>
<!-- Repeat for other carousel items -->
</div>
</div>
</div>
<!-- Services Section -->
<div class="container pt-5">
<h2>SERVICES LOVED THE MOST</h2>
<div class="row services">
<!-- <div class="col-sm-6">
<img src="feature.webp" alt="">
</div> -->
<div class="col-sm-6" style ="margin-left: 20vw;">
<h3>Excellent Features</h3>
<h5><i class="fa-solid fa-pencil"></i> Draw Tool</h5>
<div class="progress">
<div class="progress-bar" style="width: 50%;"></div>
</div>
<h5><i class="fa-solid fa-paintbrush"></i> Brush Tool</h5>
<div class="progress">
<div class="progress-bar" style="width: 25%;"></div>
</div>
<h5><i class="fa-solid fa-eraser"></i> Eraser Tool</h5>
<div class="progress">
<div class="progress-bar" style="width: 50%;"></div>
</div>
<h5><i class="fa-solid fa-shapes"></i> Shapes</h5>
<div class="progress">
<div class="progress-bar" style="width: 75%;"></div>
</div>
<h5><i class="fa-solid fa-text-height"></i> Text Tool</h5>
<div class="progress">
<div class="progress-bar" style="width: 100%;"></div>
</div>
</div>
</div>
</div>
<!-- Back to Top -->
<a id="BacktoTop" href="#">▲</a>
<!-- Footer -->
<footer class="text-center">
<div class="container">
<div class="row">
<div class="col-md-4">
<h4 class="footer-heading">About Us</h4>
<p>Creative Canvas Tool is designed to empower artists of all skill levels, offering an intuitive platform that transforms ideas into stunning digital artwork. </p>
</div>
<div class="col-md-4">
<h4 class="footer-heading">Quick Links</h4>
<a href="index.html">Home</a><br>
<a href="about-us.html">About-us</a><br>
<a href="tutorial.html">Tutorial</a><br>
<a href="Faq.html">FAQ</a>
</div>
<div class="col-md-4">
<h4 class="footer-heading">Follow Us</h4>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
</div>
<p>Contact us at: [email protected]</p>
</div>
</div>
</div>
</footer>
<script>
// Coordinates for the cursor
const coords = { x: 0, y: 0 };
const circles = document.querySelectorAll(".circle");
// Colors for the circles
const colors = [
"#ffb56b", "#fdaf69", "#f89d63", "#f59761", "#ef865e", "#ec805d",
"#e36e5c", "#df685c", "#d5585c", "#d1525c", "#c5415d", "#c03b5d",
"#b22c5e", "#ac265e", "#9c155f", "#950f5f", "#830060", "#7c0060",
"#680060", "#60005f", "#48005f", "#3d005e"
];
// Assign colors and initial position to each circle
circles.forEach(function (circle, index) {
circle.x = 0;
circle.y = 0;
circle.style.backgroundColor = colors[index % colors.length];
});
// Update the coordinates when the mouse moves
window.addEventListener("mousemove", function (e) {
coords.x = e.clientX;
coords.y = e.clientY;
});
// Animation function to move the circles
function animateCircles() {
let x = coords.x;
let y = coords.y;
circles.forEach(function (circle, index) {
// Update the position and scale of each circle
circle.style.left = x - 12 + "px";
circle.style.top = y - 12 + "px";
circle.style.scale = (circles.length - index) / circles.length;
circle.x = x;
circle.y = y;
// Get the next circle in the sequence
const nextCircle = circles[index + 1] || circles[0];
x += (nextCircle.x - x) * 0.3;
y += (nextCircle.y - y) * 0.3;
});
// Repeat the animation
requestAnimationFrame(animateCircles);
}
// Start the animation
animateCircles();
</script>
</body>
</html>