-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreview.html
More file actions
117 lines (104 loc) · 4.69 KB
/
review.html
File metadata and controls
117 lines (104 loc) · 4.69 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE HTML>
<!--
Massively by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>回顧複習</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
<link rel="shortcut icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<style>
#header .logo:hover {
color: #ffffff !important;
border-color: #ffffff !important;
}
</style>
</head>
<body class="is-loading">
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<a href="#" class="logo" style="font-family:'Microsoft JhengHei';">回顧複習</a>
</header>
<!-- Nav -->
<nav id="nav">
<ul class="links">
<ul class="links">
<li><a href="index.html">Home</a></li>
<li><a href="introduce.html">介紹</a></li>
<li><a href="test.html">測驗</a></li>
<li id="active4"><a href="review.html">回顧</a></li>
<li><a href="contact.html">諮詢</a></li>
</ul>
</ul>
</nav>
<footer id="footer">
<section class="split contact">
<div>
<span class="image fit" style="margin:0rem 0rem;">
<img id="r1" src="images/light/nolight.png" alt="" onclick="changeImgLight('r1','images/light/light1.png')" style="cursor:pointer;" />
</span>
<span class="image fit" style="margin:0rem 0rem;">
<img id="r2" src="images/light/nolight.png" alt="" onclick="changeImgLight('r2','images/light/light1-2.png')" style="cursor:pointer;" />
</span>
</div>
</section>
<section class="split contact">
<div>
<span class="image fit" style="margin:0rem 0rem;">
<img id="r3" src="images/light/nolight.png" alt="" onclick="changeImgLight('r3','images/light/light2.png')" style="cursor:pointer;" />
</span>
<span class="image fit" style="margin:0rem 0rem;">
<img id="r4" src="images/light/nolight.png" alt="" onclick="changeImgLight('r4','images/light/light2-2.png')" style="cursor:pointer;" />
</span>
</div>
</section>
<section class="split contact">
<div>
<span class="image fit" style="margin:0rem 0rem;">
<img id="r5" src="images/light/nolight.png" alt="" onclick="changeImgLight('r5','images/light/light3.png')" style="cursor:pointer;" />
</span>
<span class="image fit" style="margin:0rem 0rem;">
<img id="r6" src="images/light/nolight.png" alt="" onclick="changeImgLight('r6','images/light/light3-2.png')" style="cursor:pointer;" />
</span>
</div>
</section>
<section class="split contact">
<div>
<span class="image fit" style="margin:0rem 0rem;">
<img id="r7" src="images/light/nolight.png" alt="" onclick="changeImgLight('r7','images/light/light4.png')" style="cursor:pointer;" />
</span>
<span class="image fit" style="margin:0rem 0rem;">
<img id="r8" src="images/light/nolight.png" alt="" onclick="changeImgLight('r8','images/light/light4-2.png')" style="cursor:pointer;" />
</span>
</div>
</section>
<!-- Post -->
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
<script>
function changeImgLight(r, path) {
var now = document.getElementById(r).src;
console.log(now );
if (now.indexOf('nolight.png')!=-1) {
document.getElementById(r).src = path;
} else {
document.getElementById(r).src = 'images/light/nolight.png';
}
}
</script>
</body>
</html>