-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (62 loc) · 1.18 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS2图片动态提示效果</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<figure class="pic1">
<img src="images/1.jpg">
<figcaption>
<h2>平移效果</h2>
<p>图片注解1</p>
<p>图片注解2</p>
<p>图片注解3</p>
</figcaption>
</figure>
<figure class="pic2">
<img src="images/2.jpg">
<figcaption>
<h2>旋转动画</h2>
<p>图片注解</p>
<div></div>
</figcaption>
</figure>
<figure class="pic3">
<img src="images/3.jpg">
<figcaption>
<h2>斜切动画</h2>
<p>斜切动画图片注解</p>
</figcaption>
</figure>
<figure class="pic4">
<img src="images/4.jpg">
<figcaption>
<h2>缩放效果</h2>
<p>图片注解</p>
<div></div>
</figcaption>
</figure>
<figure class="pic5">
<img src="images/5.jpg">
<figcaption>
<h2>利用旋转显示额外信息</h2>
<div></div>
<span>
<p>but2</p>
<p>but1</p>
</span>
</figcaption>
</figure>
<figure class="pic6">
<img src="images/6.jpg">
<figcaption>
<h2>绘制线条效果</h2>
<p>图片注解</p>
<div></div>
<div></div>
</figcaption>
</figure>
</body>
</html>