淘先锋技术网

首页 1 2 3 4 5 6 7

CSS3轮播图片大全是一个非常实用的网页制作工具,它可以实现在网页中展示多张图片,并通过轮播的方式展示给用户。在这里,我们将介绍一些常用的CSS3轮播图片效果,希望能够给您带来帮助。

/* 垂直方向轮播 */
.wrap{
width: 400px;
height: 300px;
position: relative;
overflow: hidden;
}
.wrap img{
width: 400px;
height: 300px;
position: absolute;
left: 0;
top: 0;
z-index: -1;
opacity: 0;
transition: opacity .5s;
}
.wrap img.active{
opacity: 1;
z-index: 1;
}
.wrap span{
position: absolute;
right: 10px;
bottom: 10px;
z-index: 2;
display: inline-block;
width: 10px;
height: 10px;
border-radius: 50%;
background-color: #fff;
cursor: pointer;
}
.wrap span.active{
background-color: #000;
}
/* 左右方向轮播 */
.slider-wrap{
width: 100%;
height: 400px;
overflow: hidden;
position: relative;
}
.slider{
width: 10000px;
height: 400px;
position: absolute;
left: 0;
top: 0;
}
.slider-item{
width: 1000px;
height: 400px;
float: left;
}
.slider-item img{
width: 100%;
height: 100%;
object-fit: cover;
}
.slider-nav{
width: 100%;
height: 30px;
position: absolute;
left: 0;
bottom: 10px;
text-align: center;
}
.slider-nav li{
display: inline-block;
margin-right: 10px;
}
.slider-nav li a{
display: inline-block;
width: 10px;
height: 10px;
border-radius: 50%;
background-color: #fff;
cursor: pointer;
}
.slider-nav li.active a{
background-color: #000;
}

以上是两种常见的CSS3轮播图片效果,可以根据实际需求进行修改和调整。希望本篇文章能够帮助到大家的网页制作工作。