Files
ClassContent/历届学生/fontendsix/项目练习/学生项目/陶瑞/two/pic.html
2024-09-27 02:06:13 +08:00

106 lines
2.2 KiB
HTML

<!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>
li {
list-style: none;
/* 清除li标签的小圆点 */
}
a {
text-decoration: none;
/* 清除a标签的下划线 */
}
body,
ul {
margin: 0;
padding: 0;
}
.pic {
position: relative;
background: url(http://29e5534ea20a8.cdn.sohucs.com/c_zoom,h_213/c_cut,x_38,y_0,w_589,h_393/os/news/3f262081e8b625575d9d106a05a65aeb.jpg);
width: 300px;
height: 200px;
margin-left: 600px;
}
.pic .left {
position: absolute;
margin-top: 80px;
width: 25px;
height: 25px;
opacity: 0.5;
}
.pic .right {
width: 25px;
height: 25px;
position: absolute;
margin-top: 80px;
margin-left: 275px;
opacity: 0.5;
}
span {
position: absolute;
bottom: 20px;
left: 5px;
color: seashell;
}
.circular {
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
}
ul li {
float: left;
width: 5px;
height: 5px;
background: #e9e8e8;
border-radius: 50%;
bottom: 8px;
}
.circular_1 {
width: 15px;
height: 5px;
border-radius: 20px;
margin: 0px 5px;
background-color: orange;
}
</style>
</head>
<body>
<div class="pic">
<img class="left" src="./houtui.png" alt="">
<img class="right" src="./qianjin.png" alt="">
<span class="text">猪肉价格继续降?秋收如何?权威回应</span>
<ul class="circular">
<li></li>
<li class="circular_1"></li>
<li></li>
</ul>
</div>
</body>
</html>