老师,检查下,哪里还需要改进?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>轮播图</title>
<style>
* {
margin: 0;
padding: 0;
}
/* 轮播图整体样式 */
.lunbotu {
position: relative;
width: 650px;
height: 360px;
margin: 40px auto;
border: 1px solid #000;
}
/* 轮播图中左右按钮的共性 */
.lunbotu .btn {
position: absolute;
width: 40px;
height: 40px;
font-size: 30px;
font-weight: bold;
font-family: 'Courier New', Courier, monospace;
top: 50%;
cursor: pointer;
margin-top: -20px;
border-radius: 50%;
background-color: rgba(255, 255, 255, .5);
text-align: center;
line-height: 40px;
}
/* 轮播图中左按钮的个性 */
.lunbotu .leftbtn {
left: 10px;
}
/* 轮播图中右按钮的个性 */
.lunbotu .rightbtn {
right: 10px;
}
/* 鼠标悬停在左右按钮中的样式 */
.lunbotu .btn:hover {
background-color: chartreuse;
color: white;
}
/* 去掉按钮中的下划线 */
.lunbotu a {
text-decoration: none;
}
.lunbotu ol {
position: absolute;
width: 200px;
height: 20px;
right: 20px;
bottom: 20px;
list-style: none;
/* 去掉背景颜色 */
/* background-color: blue; */
}
/* 轮播图中5个提示样式 */
.lunbotu ol li {
float: left;
width: 20px;
height: 20px;
margin-right: 20px;
background-color: rgba(255, 255, 255, .5);
border-radius: 50px;
line-height: 20px;
}
/* 录播图中默认样式 */
.lunbotu ol li.current {
background-color: chartreuse;
}
</style>
</head>
<body>
<!-- 实操轮播图 -->
<div class="lunbotu">
<img src="./image/bj01.jpg" alt="">
<a href="#" class="leftbtn btn"><</a>
<a href="#" class="rightbtn btn">></a>
<!-- 五个有序列表 -->
<ol>
<li></li>
<li class="current"></li>
<li></li>
<li></li>
<li></li>
</ol>
</div>
</body>
</html>
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星