82 lines
1.7 KiB
HTML
82 lines
1.7 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>
|
|
<link rel="stylesheet" href="http://at.alicdn.com/t/c/font_3887737_znaz15du23n.css">
|
|
<style>
|
|
body,
|
|
ul,
|
|
li {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.main {
|
|
width: 590px;
|
|
height: 470px;
|
|
background: url("https://img20.360buyimg.com/pop/s1180x940_jfs/t1/74001/5/24121/92985/63de1286F9b7604e3/068cbd26f08c101a.jpg");
|
|
background-size: cover;
|
|
}
|
|
|
|
.main {
|
|
position: relative;
|
|
}
|
|
|
|
.nav,
|
|
.main ul {
|
|
position: absolute;
|
|
}
|
|
|
|
.main ul {
|
|
bottom: 22px;
|
|
left: 26px;
|
|
}
|
|
|
|
.main ul li {
|
|
float: left;
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 100%;
|
|
background: #fff;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.nav {
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 100%;
|
|
}
|
|
|
|
.nav i {
|
|
font-size: 30px;
|
|
color: #fff;
|
|
}
|
|
|
|
.icon-zuojiantou-copy {
|
|
float: right;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="main">
|
|
<div class="nav">
|
|
<i class="iconfont icon-zuojiantou"></i>
|
|
<i class="iconfont icon-zuojiantou-copy"></i>
|
|
</div>
|
|
<ul>
|
|
<li></li>
|
|
<li></li>
|
|
<li></li>
|
|
<li></li>
|
|
<li></li>
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |