-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew.html
More file actions
99 lines (90 loc) · 2.63 KB
/
new.html
File metadata and controls
99 lines (90 loc) · 2.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
background: #f5f5f5;
}
.product-section {
padding: 2rem;
text-align: center;
}
.carousel-container {
overflow: hidden;
max-width: 1000px;
margin: 0 auto;
position: relative;
}
.carousel-track {
display: flex;
transition: transform 1s ease-in-out;
width: 200%;
/* For two slides */
}
.product-page {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 1rem;
padding: 1rem;
width: 100%;
box-sizing: border-box;
}
.product-card {
background: white;
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
font-weight: bold;
}
</style>
<!-- <link rel="stylesheet" href="css/styles.css"> -->
</head>
<body>
<section class="product-section">
<h2>Our Products</h2>
<div class="carousel-container">
<div class="carousel-track">
<!-- Slide 1 -->
<div class="product-page">
<div class="product-card">Product 1</div>
<div class="product-card">Product 2</div>
<div class="product-card">Product 3</div>
<div class="product-card">Product 4</div>
<div class="product-card">Product 5</div>
<div class="product-card">Product 6</div>
<div class="product-card">Product 7</div>
<div class="product-card">Product 8</div>
<div class="product-card">Product 9</div>
</div>
<!-- Slide 2 -->
<div class="product-page">
<div class="product-card">Product 10</div>
<div class="product-card">Product 11</div>
<div class="product-card">Product 12</div>
<div class="product-card">Product 13</div>
<div class="product-card">Product 14</div>
<div class="product-card">Product 15</div>
<div class="product-card">Product 16</div>
<div class="product-card">Product 17</div>
<div class="product-card">Product 18</div>
</div>
</div>
</div>
</section>
<a href="index.html">Back</a>
<script>
const track = document.querySelector('.carousel-track');
let index = 0;
setInterval(() => {
index = (index + 1) % 2; // Change to % 3 if 3 slides
track.style.transform = `translateX(-${index * 100}%)`;
}, 4000);
</script>
<!-- <script src="js/script.js"></script> -->
</body>
</html>