jquery渐隐渐显的图片幻灯闪烁切换实现方法
2019/6/29 22:29:52
本文主要是介绍jquery渐隐渐显的图片幻灯闪烁切换实现方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
本文实例讲述了jquery渐隐渐显的图片幻灯闪烁切换实现方法。分享给大家供大家参考。具体实现方法如下:
复制代码 代码如下:
<!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>
<title>jQuery渐隐渐显的图片幻灯闪烁切换效果</title>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
<!--把下面代码加到<head>与</head>之间-->
<style type="text/css">
body{font-size:12px;letter-spacing:1px;font-family:"Microsoft YaHei";line-height:1.8em;}
div,ul,li{margin:0;padding:0;}
.slides{position:relative;width:700px;height:300px;overflow:hidden;border:1px solid #ccc;}
.slides img{width:700px; height:300px;}
.slides .ico{position:absolute; right:8px;bottom:6px;}
.slides .ico li{background:#fff;float:left;display:block;width:15px;height:15px;line-height:15px;border:1px solid #cecece;font-family:Arial,Helvetica,sans-serif;text-align:center;margin:2px;padding:1px;cursor:pointer;}
.slides .ico li.high{background:#7f0019;color:#fff;font-weight:bolder;}
</style>
<script language="javascript" src="js/jquery-1.4.2.min.js"></script>
<script language="javascript">
$(function(){
var _img=$('.slides img');
var _len=_img.length;
var _index=0;
var _moving;
//插入图片索引数字
var _ul='<ul>'
for(var i=1; i<=_len; i++){
_ul=_ul+'<li>'+i+'</li>';
}
_ul=_ul+'</ul>';
$('div.ico').append(_ul);
var _ico=$('.ico li');
//划过数字
_ico.mouseover(function(){
_index=_ico.index(this);
_img.filter(':visible').fadeOut(300,function(){
_img.eq(_index).fadeIn(300);
})
$(this).addClass('high').siblings().removeClass('high');
}).eq(0).mouseover();
//自动渐变
_moving=setInterval(autoShow,2000);
_img.hover(function(){clearInterval(_moving)},function(){
_moving=setInterval(autoShow,2000);
})
function autoShow(){
_index++;
if(_index==_len) _index=0;
_ico.eq(_index).trigger('mouseover');
};
});
</script>
</head>
<body>
预览效果时左下角会提示错误,而且看不到效果,刷新一下就可以看到效果了;当然,在实际使用中,不会出现这样的问题。<br>
<!--把下面代码加到<body>与</body>之间-->
<div class="slides">
<img src="/images/m02.jpg" title="demo" alt="demo">
<img src="/images/m01.jpg" title="demo" alt="demo">
<img src="/images/m03.jpg" title="demo" alt="demo">
<img src="/images/m04.jpg" title="demo" alt="demo">
<img src="/images/m05.jpg" title="demo" alt="demo">
<div class="ico"></div>
</div>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>jQuery渐隐渐显的图片幻灯闪烁切换效果</title>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
<!--把下面代码加到<head>与</head>之间-->
<style type="text/css">
body{font-size:12px;letter-spacing:1px;font-family:"Microsoft YaHei";line-height:1.8em;}
div,ul,li{margin:0;padding:0;}
.slides{position:relative;width:700px;height:300px;overflow:hidden;border:1px solid #ccc;}
.slides img{width:700px; height:300px;}
.slides .ico{position:absolute; right:8px;bottom:6px;}
.slides .ico li{background:#fff;float:left;display:block;width:15px;height:15px;line-height:15px;border:1px solid #cecece;font-family:Arial,Helvetica,sans-serif;text-align:center;margin:2px;padding:1px;cursor:pointer;}
.slides .ico li.high{background:#7f0019;color:#fff;font-weight:bolder;}
</style>
<script language="javascript" src="js/jquery-1.4.2.min.js"></script>
<script language="javascript">
$(function(){
var _img=$('.slides img');
var _len=_img.length;
var _index=0;
var _moving;
//插入图片索引数字
var _ul='<ul>'
for(var i=1; i<=_len; i++){
_ul=_ul+'<li>'+i+'</li>';
}
_ul=_ul+'</ul>';
$('div.ico').append(_ul);
var _ico=$('.ico li');
//划过数字
_ico.mouseover(function(){
_index=_ico.index(this);
_img.filter(':visible').fadeOut(300,function(){
_img.eq(_index).fadeIn(300);
})
$(this).addClass('high').siblings().removeClass('high');
}).eq(0).mouseover();
//自动渐变
_moving=setInterval(autoShow,2000);
_img.hover(function(){clearInterval(_moving)},function(){
_moving=setInterval(autoShow,2000);
})
function autoShow(){
_index++;
if(_index==_len) _index=0;
_ico.eq(_index).trigger('mouseover');
};
});
</script>
</head>
<body>
预览效果时左下角会提示错误,而且看不到效果,刷新一下就可以看到效果了;当然,在实际使用中,不会出现这样的问题。<br>
<!--把下面代码加到<body>与</body>之间-->
<div class="slides">
<img src="/images/m02.jpg" title="demo" alt="demo">
<img src="/images/m01.jpg" title="demo" alt="demo">
<img src="/images/m03.jpg" title="demo" alt="demo">
<img src="/images/m04.jpg" title="demo" alt="demo">
<img src="/images/m05.jpg" title="demo" alt="demo">
<div class="ico"></div>
</div>
</body>
</html>
希望本文所述对大家的jQuery程序设计有所帮助。
这篇关于jquery渐隐渐显的图片幻灯闪烁切换实现方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-03-06jquery对css样式(jquery中的css方法)-icode9专业技术文章分享
- 2023-05-27JQuery的认识和安装
- 2023-01-06JQuery应用技巧:如何定义 HTML 模板并使用 JQuery 进行加载-icode9专业技术文章分享
- 2022-09-29复习-jQuery
- 2022-09-04Python3项目初始化10-->前端基础jquery、ajax,sweetalert--更新用户改造
- 2022-08-30day 27 jquery
- 2022-08-29jQuery筛选器,bootstrap
- 2022-08-20JQuery事件绑定
- 2022-08-20JQuery案例
- 2022-08-07关于jQuery的学习