用HTML5和CSS3做一个轮播图
时间: 2024-01-30 12:01:56 浏览: 97
好的,下面是一个简单的 HTML5 和 CSS3 实现轮播图的示例:
HTML 部分:
```html
<div class="slideshow-container">
<div class="slideshow">
<img src="img1.jpg" alt="Image 1">
<img src="img2.jpg" alt="Image 2">
<img src="img3.jpg" alt="Image 3">
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
```
CSS 部分:
```css
.slideshow-container {
position: relative;
margin: auto;
width: 80%;
}
.slideshow {
display: flex;
overflow: hidden;
}
.slideshow img {
width: 100%;
height: auto;
}
.prev,
.next {
position: absolute;
top: 50%;
width: auto;
padding: 16px;
margin-top: -22px;
color: white;
font-weight: bold;
font-size: 18px;
cursor: pointer;
z-index: 1;
}
.next {
right: 0;
}
.prev:hover,
.next:hover {
background-color: rgba(0, 0, 0, 0.8);
}
.fade {
animation-name: fade;
animation-duration: 1.5s;
}
@keyframes fade {
from {
opacity: 0.4;
}
to {
opacity: 1;
}
}
```
JavaScript 部分:
```javascript
var slideIndex = 1;
showSlides(slideIndex);
function plusSlides(n) {
showSlides((slideIndex += n));
}
function currentSlide(n) {
showSlides((slideIndex = n));
}
function showSlides(n) {
var i;
var slides = document.getElementsByClassName("slideshow")[0].getElementsByTagName("img");
var dots = document.getElementsByClassName("dot");
if (n > slides.length) {
slideIndex = 1;
}
if (n < 1) {
slideIndex = slides.length;
}
for (i = 0; i < slides.length; i++) {
slides[i].classList.remove("fade");
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex - 1].classList.add("fade");
dots[slideIndex - 1].className += " active";
}
```
这个轮播图使用了 flexbox 布局和 CSS3 动画来实现,同时也包括了 JavaScript 来实现切换图片和指示器的功能。您可以将这个示例代码复制到您的 HTML 文件中并替换图片链接,然后就可以在浏览器中查看实现效果了。
阅读全文