-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage_carousel
89 lines (80 loc) · 2.4 KB
/
image_carousel
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Carousel</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
.carousel {
position: relative;
width: 100%;
max-width: 800px;
height: 500px;
margin: auto;
overflow: hidden;
border: 2px solid #ccc;
border-radius: 10px;
}
.carousel-images {
display: flex;
transition: transform 0.5s ease-in-out;
width: 500%;
}
.carousel-images img {
width: 100%;
height: 100%;
object-fit: cover;
}
.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);
}
</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>
<script>
let currentIndex = 0;
function moveSlide(direction) {
const carouselImages = document.getElementById("carousel-images");
const totalImages = carouselImages.children.length;
currentIndex = (currentIndex + direction + totalImages) % totalImages;
const offset = -currentIndex * 100;
carouselImages.style.transform = `translateX(${offset}%)`;
}
</script>
</body>
</html>