无为清净楼资源网 Design By www.qnjia.com
复制代码 代码如下:
<!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="/UploadFiles/2021-04-02/jquery.min.js"><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="/UploadFiles/2021-04-02/2010615222757.jpg"><li><img src="http://img5.cache.netease.com/m/app/201108/31/953DDLJL.jpg"><li><img src="/UploadFiles/2021-04-02/rBUyIVHfdvC9LAM6AAC873sDEoo981.jpg"><li><img src="http://img.bimg.126.net/photo/L0py2I9-0qIAd_Keov5GhQ==/1710804908448128265.jpg"></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,图片渐变切换

无为清净楼资源网 Design By www.qnjia.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
无为清净楼资源网 Design By www.qnjia.com