<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>淘宝轮播图</title>
<style>
*{
margin: 0;
padding: 0;
}
li{
list-style: none;
}
.tb-promo{
/* 子绝父相 */
position: relative;
height: 280px;
width: 520px;
background-color: pink;
/* 盒子居中对齐 */
margin: 100px auto;
}
/* 强制规定图片的大小和盒子的大小相同 */
.tb-promo img{
width: 520px;
height: 280px;
}
.prev,
.next{
/* 箭头是压住盒子的 所以?浮动?不容易做--不占有位置所以用绝对定位 */
position: absolute;
top:50%;
margin-top: -15px;
/* 加了绝对定位的盒子可以直接设置高度和宽度 */
width: 20px;
height: 30px;
background:rgba(0,0,0,.3);
/* 文字水平居中,垂直居中 */
text-align: center;
line-height: 30px;
color: #fff;
/* 去掉下划线 */
text-decoration: none;
}
.prev{
left:0;
border-top-right-radius: 15px;
border-bottom-right-radius: 15px;
}
.next{
right: 0;
border-top-left-radius: 15px;
border-bottom-left-radius: 15px;
}
.promo-nav{
/* 绝对定位 */
position: absolute;
bottom: 15px;
left:50%;
margin-left: -35px;
width: 70px;
height: 13px;
background-color: rgba(255,255,255,.3);
border-radius: 7px;
}
.promo-nav li{
float: left;
width: 8px;
height: 8px;
background-color: #fff;
border-radius: 50%;
margin: 3px;
}
.promo-nav .selected{
background-color: #ff5000;
}
</style>
</head>
<body>
<div class="tb-promo">
<!-- 图片 -->
<img src="images/tb.jpg" alt="">
<!-- 左侧符号 -->
<a href="#" class="prev"><</a>
<!-- 右侧符号 -->
<a href="#" class="next">></a>
<!-- 下面的小圆点 -->
<ul class="promo-nav">
<li class="selected"></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
</body>
</html>
来源:CSDN
作者:无敌帅气软件学长
链接:https://blog.csdn.net/qq_41341757/article/details/104181575