-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathj1 thumbnail.html
31 lines (27 loc) · 975 Bytes
/
j1 thumbnail.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
<!DOCTYPE html>
<html>
<head><title>img thumb</title>
<style type ="text/css">
.tumbnail{
height: 100px;
width: 200px; }
#display{ display: block;
height: 300px;
width: 600px; }
</style>
<script type="text/javascript">
function f1 (x){var dis = document.getElementById("display");
dis.src=x.src;
x.style.border= "5px solid #f00";
dis.style.display="block";}
function f2(x){x.style.border="";
dis.style.display="none";}
</script>
</head>
<body>
<img src ="anime.jpg" class="tumbnail" onmouseover="f1(this)" onmouseout="f2(this)">
<img src ="anime2.jpg" class="tumbnail"onmouseover="f1(this)"onmouseout="f2(this)" >
<img src ="anime3.jpg" class="tumbnail"onmouseover="f1(this)"onmouseout="f2(this)">
<img id="display" src ="anime.jpg">
</body>
</html>s