jQuery图片从下往上滚动效果
jQuery图片从下往上滚动效果是一款jquery animate方法制作的图片从下往上滚动效果。jQuery鼠标悬停图片滑动滚动效果
所属专题:图片代码
<link href="css/style.css" type="text/css" rel="stylesheet"/>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.box .box1').mouseover(function(){
$(this).stop().animate({"top":"-514px"}, 200);
})
$('.box .box1').mouseout(function(){
$(this).stop().animate({"top":"0"}, 200);
})
})
</script>