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
|
<!doctype html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>GwtQuery: Fancy Thumbnail Hover Effect</title>
<style type="text/css">
body {
font-family: verdana;
margin: 0;
padding: 0;
}
* {
margin: 0;
padding: 0;
}
img {
border: none;
}
.container {
height: 360px;
width: 360px;
margin: -180px 0 0 -180px;
top: 40%; left: 50%;
position: absolute;
}
ul.thumb {
float: left;
list-style: none;
margin: 0; padding: 10px;
width: 360px;
}
ul.thumb li {
margin: 0; padding: 5px;
float: left;
position: relative;
width: 110px;
height: 110px;
}
ul.thumb li img {
width: 100px; height: 100px;
border: 1px solid #ddd;
padding: 5px;
background: #f0f0f0;
position: absolute;
left: 0; top: 0;
-ms-interpolation-mode: bicubic;
}
ul.thumb li img.hover {
background:url(images/zoom/thumb_bg.png) no-repeat center center;
border: none;
}
</style>
<!-- <script language="javascript" src="../target/jsquery-1.1.1-SNAPSHOT/jsquery/jsquery.nocache.js" ></script> -->
<script language="javascript" src="../../api/jsquery.nocache.js" ></script>
</head>
<body>
<div class="container">
<br/>
Soh Tanaka's Fancy Thumbnail Hover Effect, it works with jquery and JsQuery.
<br/>
<br/>
<ul class="thumb">
<li><a href="#"><img src="images/zoom/thumb1.jpg" alt="" /></a></li>
<li><a href="#"><img src="images/zoom/thumb2.jpg" alt="" /></a></li>
<li><a href="#"><img src="images/zoom/thumb3.jpg" alt="" /></a></li>
<li><a href="#"><img src="images/zoom/thumb4.jpg" alt="" /></a></li>
<li><a href="#"><img src="images/zoom/thumb5.jpg" alt="" /></a></li>
<li><a href="#"><img src="images/zoom/thumb6.jpg" alt="" /></a></li>
<li><a href="#"><img src="images/zoom/thumb7.jpg" alt="" /></a></li>
<li><a href="#"><img src="images/zoom/thumb8.jpg" alt="" /></a></li>
<li><a href="#"><img src="images/zoom/thumb9.jpg" alt="" /></a></li>
</ul>
</div>
<script>
$(document).ready(function(){
$('ul.thumb li').hover(function() {
$(this).css({'z-index' : '10'});
$(this).find('img').addClass("hover").stop()
.animate({
marginTop: '-110px',
marginLeft: '-110px',
top: '50%',
left: '50%',
width: '174px',
height: '174px',
padding: '20px'
}, 200);
} , function() {
$(this).css({'z-index' : '0'});
$(this).find('img').removeClass("hover").stop()
.animate({
marginTop: '0',
marginLeft: '0',
top: '0',
left: '0',
width: '100px',
height: '100px',
padding: '5px'
}, 400);
});
});
</script>
</body>
</html>
|