1 Star 0 Fork 0

java49杨振/5-12

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
1.html 1.44 KB
一键复制 编辑 原始数据 按行查看 历史
java49杨振 提交于 2018-05-13 23:09 . Upload 1.html 3.html 4.html 2.html
<!doctype html>
<head>
<meta charset="UTF-8">
<title>京东轮播图</title>
<style type="text/css">
* {
margin: 0px;
padding: 0px;
text-align: center;
}
#banner {
width: 730px;
height: 454px;
margin: 50px auto;
position: relative;
/*相对定位,相对于.btn按钮*/
text-align: left;
}
.pic image {
display: block;
/*默认有图片不显示*/
position: absolute;
/*绝对定位.对应的是.pic这个div*/
top: 0px;
left: 0px;
}
.pic a {
display: none;
}
.pic {
/*专门显现图片区*/
position: relative;
}
.btn {
width: 150px;
height: 18px;
position: absolute;
/*绝对定位相对于banner div*/
bottom: 5px;
right: 290px;
}
.btn ul li {
background-color: #000000;
/*黑色*/
color: #ffffff;
list-style-type: none;
width: 18px;
height: 18px;
float: left;
border-radius: 9px;
/*变成圆的*/
text-align: center;
line-height: 18px;
cursor: pointer;
/*鼠标移动变手指状态*/
margin-left: 5px;
}
.btn ul li:hover{
background-color: #ff9966;
}
</style>
</head>
<body>
<div id="banner">
<div class="pic">
<a href="#" style="display:block"><img src="img/focus.jpg" /></a>
</div>
<div class="btn">
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
</ul>
<div>
</div>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yangshu23/5-12.git
[email protected]:yangshu23/5-12.git
yangshu23
5-12
5-12
master

搜索帮助