jquery实现图片渐变切换兼容ie6/Chrome/Firefox
更新时间:2013年08月02日 16:06:02 作者:
jquery代码实现图片渐变切换同时兼容ie6、Chrome、Firefox,想学习的朋友可以测试下,希望对大家有所帮助
复制代码 代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="Nancle from CAU CS101" />
<title>jQuery图片渐变切换</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<style type="text/css">
ul{position:relative;}
ul li{display:block; position:absolute; left:0; top:0}
img{width:480px; height:320px; border:5px solid #ccc}
</style>
</head>
<body>
<ul>
<li><img src="http://down.fpwap.com/UploadFiles/sjbz/2010/6/2010615222757.jpg" /></li>
<li><img src="http://img5.cache.netease.com/m/app/201108/31/953DDLJL.jpg" /></li>
<li><img src="http://i-imgp.fetionpic.com/fphoto/photo1/M00/41/83/rBUyIVHfdvC9LAM6AAC873sDEoo981.jpg" /></li>
<li><img src="http://img.bimg.126.net/photo/L0py2I9-0qIAd_Keov5GhQ==/1710804908448128265.jpg" /></li>
</ul>
</div>
<script>
var switchSpeed = 1000; //图片切换时间
var fadeSpeed = 1500; //渐变时间
setInterval(function(){
$('img').last().fadeOut(fadeSpeed, function(){
$(this).show().parent().prependTo($('ul'));
});
}, switchSpeed);
</script>
</body>
</html>
效果预览:http://quchen.cau.edu.cn/jsDev/gradien.html
相关文章
jQuery插件HighCharts绘制2D带Label的折线图效果示例【附demo源码下载】
这篇文章主要介绍了jQuery插件HighCharts绘制2D带Label的折线图效果,结合实例形式分析了jQuery图形绘制插件HighCharts实现折线图效果的具体操作步骤与相关技巧,并附带demo源码供读者下载参考,需要的朋友可以参考下2017-03-03jQuery Ajax方法调用 Asp.Net WebService 的详细实例代码
我在这里将jQuery Ajax 调用Aspx.Net WebService 的几个常用的方法做了一个整理,提供给正在找这方面内容的博友,希望能给学习jQuery的朋友一点帮助,可以直接复制代码运行。2011-04-04
最新评论