jQuery image slide on hover effect
HTML разметка:
<div id="container">
<h1>jQuery image slide on hover effect</h1>
<div><a href="#"><img src="sex1.png" /></a></div>
<div><a href="#"><img src="sex2.png" /></a></div>
<div><a href="#"><img src="sex3.png" /></a></div>
<div><a href="#"><img src="sex4.png" /></a></div>
</div>
<h1>jQuery image slide on hover effect</h1>
<div><a href="#"><img src="sex1.png" /></a></div>
<div><a href="#"><img src="sex2.png" /></a></div>
<div><a href="#"><img src="sex3.png" /></a></div>
<div><a href="#"><img src="sex4.png" /></a></div>
</div>
CSS:
/* simple reset */
html,body,div,h2,img {margin:0;padding:0;border:none;}
html {
font:1em Arial, Helvetica, sans-serif;
color:#444;
}
h1 { text-align:center;}
#container {
margin:100px auto;
width:909px;
}
#container div {
margin-right:3px;
float:left;
width:200px;
height:234px;
border:1px solid #999;
position:relative;
overflow:hidden;
}
#container img {
position:absolute;
}
html,body,div,h2,img {margin:0;padding:0;border:none;}
html {
font:1em Arial, Helvetica, sans-serif;
color:#444;
}
h1 { text-align:center;}
#container {
margin:100px auto;
width:909px;
}
#container div {
margin-right:3px;
float:left;
width:200px;
height:234px;
border:1px solid #999;
position:relative;
overflow:hidden;
}
#container img {
position:absolute;
}
jQuery:
$(function(){
$("#container div a").hover(function(){
$("img", this).stop().animate({top:"-234px"},{queue:false,duration:200});
}, function() {
$("img", this).stop().animate({top:"0px"},{queue:false,duration:200});
});
});
$("#container div a").hover(function(){
$("img", this).stop().animate({top:"-234px"},{queue:false,duration:200});
}, function() {
$("img", this).stop().animate({top:"0px"},{queue:false,duration:200});
});
});
| Attachment | Size |
|---|---|
| demka.rar | 599.4 KB |
- Categories:
- heihachi's blog
- Add new comment
- 1173 reads

Recent comments
5 hours 20 min ago
8 hours 12 min ago
1 day 10 hours ago
1 day 16 hours ago
4 days 2 hours ago
4 days 2 hours ago
2 weeks 1 day ago
3 weeks 7 hours ago
4 weeks 2 days ago
7 weeks 5 days ago