-
Notifications
You must be signed in to change notification settings - Fork 0
/
lab.html
54 lines (46 loc) · 1.57 KB
/
lab.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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>结构样式行为彻底分离的showPic</title>
<link rel="stylesheet" type="text/css" href="main.css" media="screen and (min-width: 481px)">
<link rel="stylesheet" type="text/css" href="main-mobile.css" media="screen and (max-width: 480px)">
</head>
<body>
<nav>
<ul>
<li><a href="index.html">主页</a></li>
<li><a href="about.html">关于</a></li>
<li><a href="note.html">笔记</a></li>
<li><a href="science.html">杂记</a></li>
<li class="selected">实验</li>
</ul>
</nav>
<ul class="ulNoStyle" id="imagegallery">
<li>
<a href="pic/送花.gif" title="送花">送花</a>
</li>
<li>
<a href="pic/出来玩.gif" title="出来玩">出来玩</a>
</li>
<li>
<a href="pic/呼啦圈.gif" title="转呼啦圈">呼啦圈</a>
</li>
<li>
<a href="pic/来吧.gif" title="重置">重置</a>
</li>
</ul>
<!--利用js来实现description和placeholder,而不是html-->
<p>
<button onclick="reset()">真·重置</button>
</p>
<footer>
© 2024, Gu Wei
<br>
All trademarks and registered trademarks appearing on
this site are the property of their respective owners. ( :
</footer>
<script src="final_showPic.js"></script> <!--注意script标签放的位置-->
</body>
</html>