jquery实现图片渐变切换兼容ie6/Chrome/Firefox
代码如下:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "https://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="https://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="https://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=https://www.2cto.com/uploadfile/2018/0414/20180414015957532.jpg" /></li>
<li><img src=https://www.2cto.com/uploadfile/2018/0414/20180414015957761.jpg" /></li>
<li><img src=https://www.2cto.com/uploadfile/2018/0414/20180414015957611.jpg" /></li>
<li><img src=https://www.2cto.com/uploadfile/2018/0414/20180414015957645.jpg" /></li>
</ul>
</p>
<script>
var switchspeed = 1000; //图片切换时间
var fadespeed = 1500; //渐变时间
setinterval(function(){
$('img').last().fadeout(fadespeed, function(){
$(this).show().parent().prependto($('ul'));
});
}, switchspeed);
</script>
</body>
</html>
上一篇: JavaScrip如何显示和隐藏代码域?
下一篇: 原生js实现table的排序代码实例
推荐阅读
-
jquery实现图片渐变切换兼容ie6/Chrome/Firefox
-
完美兼容各大浏览器的jQuery插件实现图片切换特效
-
jquery实现图片渐变切换兼容ie6/Chrome/Firefox_jquery
-
jquery实现两个图片渐变切换效果的方法_jquery
-
完美兼容各大浏览器的jQuery插件实现图片切换特效_jquery
-
jquery实现两个图片渐变切换效果的方法_jquery
-
完美兼容各大浏览器的jQuery插件实现图片切换特效_jquery
-
jquery实现图片渐变切换兼容ie6/Chrome/Firefox
-
完美兼容各大浏览器的jQuery插件实现图片切换特效
-
js实现ctrl+v粘贴上传图片(兼容chrome、firefox、ie11)_javascript技巧