110 lines
1.8 KiB
HTML
110 lines
1.8 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>Document</title>
|
|
|
|
</head>
|
|
<style>
|
|
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.top {
|
|
position: relative;
|
|
width: 520px;
|
|
height: 280px;
|
|
background: turquoise;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.top-left,
|
|
.top-right {
|
|
width: 40px;
|
|
height: 40px;
|
|
display: none;
|
|
position: absolute;
|
|
line-height: 30px;
|
|
margin-top: 90px;
|
|
|
|
}
|
|
|
|
.top:hover .top-left {
|
|
display: block;
|
|
}
|
|
|
|
.top:hover .top-right {
|
|
display: block;
|
|
}
|
|
|
|
.top-left {
|
|
left: 10px;
|
|
}
|
|
|
|
.top-right {
|
|
right: 10px;
|
|
|
|
}
|
|
|
|
p {
|
|
position: absolute;
|
|
bottom: 50px;
|
|
margin-left: 10px;
|
|
font-weight: 5px;
|
|
font-size: 20px;
|
|
color: #fff;
|
|
}
|
|
|
|
li {
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
.www {
|
|
position: absolute;
|
|
bottom: 20px;
|
|
width: 100px;
|
|
left: 50%;
|
|
margin-left: -50px;
|
|
height: 10px;
|
|
|
|
}
|
|
|
|
.www li {
|
|
|
|
float: left;
|
|
width: 10px;
|
|
height: 10px;
|
|
background-color: #d1cbcb;
|
|
border-radius: 50%;
|
|
margin-right: 15px;
|
|
}
|
|
|
|
.www .span2 {
|
|
width: 30px;
|
|
height: 10px;
|
|
border-radius: 20px;
|
|
|
|
background-color: yellow
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
<div class="top">
|
|
<img class="top-left" src="./left.png" alt="">
|
|
<img class="top-right" src="./right.png" alt="">
|
|
|
|
<p>猪肉价格继续降?秋收如何?权威回应</p>
|
|
<ul class="www">
|
|
<li></li>
|
|
<li class="span2"></li>
|
|
<li></li>
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |