赞
踩
使用纯CSS实现图片轮播效果
首先我们来看一下所实现轮播图的最终效果:
轮播图 效果
接下来为html+css代码部分:
以下为HTML代码部分:
以下为CSS代码部分:
*{
margin:0;
padding:0;
}
.banner{
position:relative;
width:300px;
height:300px;
margin:50px auto;
border:5px solid lightcoral;
overflow:hidden;
}
.banner ul{
width:900px;
padding:0;
transition:all 1s;
}
.banner li{
list-style:none;
width:300px;
height:300px;
float:left;</
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。