-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarousel.html
132 lines (118 loc) · 3.75 KB
/
carousel.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Carousel with Progress Bar</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
.carousel {
position: relative;
width: 100%;
max-width: 1440px; /* Adjusted for 72in x 36in aspect ratio */
height: 720px; /* Keeps the 2:1 ratio */
margin: auto;
overflow: hidden;
border: 2px solid #ccc;
border-radius: 10px;
}
.carousel-images {
display: flex;
transition: transform 0.5s ease-in-out;
}
.carousel-images img {
width: 100%; /* Ensures images fill the carousel width */
height: 100%; /* Ensures images fill the carousel height */
object-fit: cover; /* Maintains aspect ratio and covers the carousel area */
}
.carousel-button {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(0, 0, 255, 0.8);
border: none;
color: white;
font-size: 24px;
padding: 10px;
cursor: pointer;
z-index: 1000;
border-radius: 50%;
}
.carousel-button.left {
left: 10px;
}
.carousel-button.right {
right: 10px;
}
.carousel-button:hover {
background-color: rgba(0, 0, 180, 0.9);
}
.progress-bar {
display: flex;
justify-content: center;
align-items: center;
margin-top: 10px;
position: absolute;
bottom: 15px;
width: 100%;
}
.progress-dot {
width: 12px;
height: 12px;
margin: 0 5px;
background-color: white;
border: 2px solid #0000ff;
border-radius: 50%;
transition: background-color 0.3s ease;
}
.progress-dot.active {
background-color: #0000ff;
}
</style>
</head>
<body>
<div class="carousel">
<div class="carousel-images" id="carousel-images">
<img src="https://raw.githubusercontent.com/Oyinfunke/notion/refs/heads/main/Assets/images/Delta1.png">
<img src="https://raw.githubusercontent.com/Oyinfunke/notion/refs/heads/main/Assets/images/delta2.png">
<img src="https://raw.githubusercontent.com/Oyinfunke/notion/refs/heads/main/Assets/images/delta3.png">
<img src="https://raw.githubusercontent.com/Oyinfunke/notion/refs/heads/main/Assets/images/delta4.png">
<img src="https://raw.githubusercontent.com/Oyinfunke/notion/refs/heads/main/Assets/images/delta5.png">
</div>
<button class="carousel-button left" onclick="moveSlide(-1)">‹</button>
<button class="carousel-button right" onclick="moveSlide(1)">›</button>
<div class="progress-bar" id="progress-bar">
<!-- Dots will be generated dynamically -->
</div>
</div>
<script>
const totalImages = 5; // Total number of images
let currentIndex = 0;
// Create progress dots dynamically
const progressBar = document.getElementById('progress-bar');
for (let i = 0; i < totalImages; i++) {
const dot = document.createElement('div');
dot.classList.add('progress-dot');
if (i === 0) dot.classList.add('active');
progressBar.appendChild(dot);
}
function updateProgressBar() {
const dots = document.querySelectorAll('.progress-dot');
dots.forEach((dot, index) => {
dot.classList.toggle('active', index === currentIndex);
});
}
function moveSlide(direction) {
const carouselImages = document.getElementById("carousel-images");
currentIndex = (currentIndex + direction + totalImages) % totalImages;
const offset = -currentIndex * 100;
carouselImages.style.transform = `translateX(${offset}%)`;
updateProgressBar();
}
</script>
</body>
</html>