Jquery中文网 www.jquerycn.cn
Jquery中文网 >  jQuery  >  jquery 教程  >  正文 jquery实现图片渐变切换兼容ie6/Chrome/Firefox

jquery实现图片渐变切换兼容ie6/Chrome/Firefox

发布时间:2014-02-26   编辑:www.jquerycn.cn
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实现图片渐变切换兼容ie6/Chrome/Firefox
一款jquery特效编写的大度宽屏焦点图切换特效的实例代码
基于jquery编写的横向自适应幻灯片切换特效的实例代码
jquery图片滚动(渐隐渐现模糊消失效果)
jQuery实现等比例缩放大图片让大图片自适应页面布局
CSS3 - 设置渐变颜色背景,线性/放射性/循环(附在线渐变生成工具)
css中-webkit-box-reflect属性简介及元素镜像倒影实现
CSS 浏览器兼容hack整理收藏
css 图片垂直居中(兼容各主流浏览器,含IE6/IE7)
前端技术实现文本文字纹理叠加

关键词: jquery  图片渐变切换   
[关闭]