当前位置 : 首页
jquery实现点击图片翻页展示效果的方法
这篇文章主要介绍了jquery实现点击图片翻页展示效果的方法,涉及jquery操作图片的操作技巧,非常具有实用价值,需要的朋友可以参考下
本文实例讲述了jquery实现点击图片翻页展示效果的方法。分享给大家供大家参考。具体实现方法如下:
代码如下:
<!doctype html public -//w3c//dtd html 4.0 transitional//en>
<html>
<head>
<title>基于jquery实现的点击图片翻页展示效果</title>
<meta http-equiv=content-type content=text/html;charset=gb2312>
<style type=text/css>
.div{width:240px;height:90px;z-index:0;position:absolute;left:10px;border:2px #3300ff solid;border:0px;color:#ffffff;margin-left:320px;}
</style>
<script type=text/javascript src=/images/jquery1.3.2.js></script>
<script type=text/javascript>
$(function(){
var z=-1;
$(div).click(function(){
$(this).animate({left:350px},1000,function(){$(this).css(zindex,z--)}).animate({left:10px},1000);
})
});
</script>
</head>
<body>若不能显示效果,则刷新页面可正常。
<div class=div><img src=images/m01.jpg></div>
<div class=div><img src=images/m02.jpg></div>
<div class=div><img src=images/m03.jpg></div>
<div class=div><img src=images/m04.jpg></div>
</body>
</html>
希望本文所述对大家的jquery程序设计有所帮助。
更多