-
Notifications
You must be signed in to change notification settings - Fork 0
/
jump02.html
53 lines (44 loc) · 1.53 KB
/
jump02.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
<!DOCTYPE html>
<html>
<head>
<title>Jump for Joy</title>
<link href="ch02/end/styles/my_style.css" rel="stylesheet">
<style>
p {
text-align: left;
font-family: sans-serif;
}
div#main div.doHover{
border: solid #00f 3px ;
}
.discount{
border: solid #0f0 3px;
}
.no_discount{
border: solid #f00 3px;
}
div#main div+p {
clear:both;
padding: 20px 0px;
}
#result {
display: inline-block;
padding: 0px 10px;
}
</style>
<script src="js/jquery-2.0.3.js"></script>
<script src="js/jump02.js"></script>
</head>
<body>
<div id="header">
<h2>Jump for Joy Sale</h2>
</div>
<div id="main">
<div><img src="ch02/end/images/jump1.jpg"/></div>
<div><img src="ch02/end/images/jump2.jpg"/></div>
<div><img src="ch02/end/images/jump3.jpg"/></div>
<div><img src="ch02/end/images/jump4.jpg"/></div>
<p><span id="result"></span></p>
</div>
</body>
</html>