css 绝对定位实现一个轮播效果

结果:css 绝对定位实现一个轮播效果

css:

<style type="text/css">
div, ul, ol {
margin: 0;
padding: 0;
}
.box {
position: relative;
overflow: hidden;
height: 488px;
}
li {
list-style: none;
cursor: pointer;
}
ol {
position: absolute;
left: 50%;
bottom: 0;
margin-left: -412px;
width: 88px;
height: 42px;
}
ol li {
float: left;
width: 44px;
height: 42px;
}
</style>

html:

<div class="box">
<ul>
<li><img src="images/banner_img01.jpg" /></li>
</ul>
<ol>
<li title="上一张"></li>
<li title="下一张"></li>
</ol>
</div>

原图:css 绝对定位实现一个轮播效果

css 绝对定位实现一个轮播效果,布布扣,bubuko.com

css 绝对定位实现一个轮播效果

上一篇:创意HTML5文字特效 类似翻页的效果


下一篇:.net+jquery+ashx实现客户端模拟登陆扩展