-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (34 loc) · 1.29 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>点击弹出大图</title>
<link href="css/base.css" rel="stylesheet" type="text/css">
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/base.js" type="text/javascript"></script>
</head>
<body>
<div class="little-image">
<img src="img/bz1.png" alt="动漫1">
<img src="img/bz2.png" alt="动漫2">
<img src="img/bz3.png" alt="动漫3">
<img src="img/bz4.png" alt="动漫4">
<img class="long-img" src="img/bz5.png" alt="动漫5">
</div>
<div class="pop">
<div class="black"></div>
<div class="content">
<div class="top-nav">
<button class="mask-prev btn-style fl">上一张</button>
<button class="mask-big btn-style btn-style1">放大</button>
<button class="mask-small btn-style">缩小</button>
<button class="revolution btn-style">顺旋转</button>
<button class="counter-revolution btn-style">逆旋转</button>
<button class="mask-close btn-style">关闭</button>
<button class="mask-next btn-style fr">下一张</button>
</div>
<div class="con-img"></div>
</div>
</div>
</body>
</html>