jquery图片切换实例分析

 本文实例讲述了jquery图片切换实现方法。分享给大家供大家参考。具体如下:

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126

<!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>
<script language="javascript" src="inc/jquery-1.4.2.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<style type="text/css">
#butt div{
width:122px; height:32px; float:left; text-align:center;
}
</style>
<script language="javascript">
function tab_q(now_id)
{
if(now_id == null)
{
//alert($("#butt").find("div:visible").attr("id"))
c_show_id = $("#cont").find("div:visible").attr("id");
//此时显示按钮的ID名称
nums_id = c_show_id.substring(1,3);
//截取B1后面的1,作为字符串放到C后面
b_show_id = "b"+ nums_id;
//此时显示内容的ID名称
nums_next = parseInt(nums_id)+1
//alert(nums_next)
if(nums_next<=8)
//如果到最后一个的话,那么就要跳回第一个
{
}
else
{
nums_next = 1
}
}else
{
nums_next = now_id.substring(1,3);
}
$("#cont div").hide();
//让所有的上面的div中的图片消失。
//是为了罗出地方让下一张图片出现的。
$("#butt div").css({border:'#FF0000 0px solid'});
//让所有按钮的边框消失。是为了让下一个按钮有边框,
//alert("#"+"c"+nums_next)
$("#c"+nums_next).fadeIn() //让上面的图片淡出来
$("#b"+nums_next).css({border:'#FF0000 1px solid'});
//给下面对应的按钮加上边框,当然这里也可以做其他的效果
//加边框只是为了测试
}
$(function(){ //当页面加载完成
auto = setInterval("tab_q()",2000); //这里修改切换的时间的
$("#cont div").each(function(i,n){
$(n).hover(
function(){
clearInterval(auto) },
function(){auto=setInterval("tab_q()",2000); }
)
})
$("#butt div").each(function(i,n){
$(n).hover(
function(){
clearInterval(auto);
tab_q($(this).attr("id"))
},function(){auto=setInterval("tab_q()",2000); }
)
})
})
</script>
<body>
<div style="width:980px; height:275px;">
<div style="width:980px; height:241px; overflow:hidden;
text-align:center" id="cont">
<div style="width:980px; height:241px; text-align:center"
id="c1"><img src="images/xmjz.jpg" width="980"/>
</div>
<div style="width:980px; height:241px; display:none;
text-align:center" id="c2">
<img src="images/4037.jpg" width="980" height="241"/>
</div>
<div style="width:980px; height:241px; display:none;
text-align:center" id="c3"><img src="images/4041.jpg"
width="980" height="241"/></div>
<div style="width:980px; height:241px; display:none;
text-align:center" id="c4">
<img src="images/xmjz.jpg" width="980"/>
</div>
<div style="width:980px; height:241px;
display:none;text-align:center" id="c5">
<img src="images/xmjz.jpg" width="980"/>
</div>
<div style="width:980px; height:241px;
display:none;text-align:center" id="c6">
<img src="images/xmjz.jpg" width="980"/>
</div>
<div style="width:980px; height:241px;
display:none;text-align:center" id="c7">
<img src="images/xmjz.jpg" width="980"/>
</div>
<div style="width:980px; height:241px;
display:none;text-align:center" id="c8">
<img src="images/xmjz.jpg" width="980"/>
</div>
</div>
<div style="width:980px; height:31px; border:#FF0000 0px solid"
id="butt">
<div style="background-image:url(images/xmbtn_1.png)" id="b1">
</div>
<div style="background-image:url(images/xmbtn_2.png)" id="b2">
</div>
<div style="background-image:url(images/xmbtn_2.png)" id="b3">
</div>
<div style="background-image:url(images/xmbtn_2.png)" id="b4">
</div>
<div style="background-image:url(images/xmbtn_2.png)" id="b5">
</div>
<div style="background-image:url(images/xmbtn_2.png)" id="b6">
</div>
<div style="background-image:url(images/xmbtn_2.png)" id="b7">
</div>
<div style="background-image:url(images/xmbtn_2.png)" id="b8">
</div>
</div>
</div>
</body>
</html>

时间: 2024-11-03 06:04:21

jquery图片切换实例分析的相关文章

jquery图片切换实例分析_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

jQuery图片切换动画特效_jquery

由于博主我懒,所以页面画的比较粗糙,但是没关系,因为我主要讲的是如何实现图片动画切换. 思路:想必大家都逛过淘宝或者其他的一些网站,一般都会有图片动画切换的效果,那是怎样实现的呢?博主我呢,技术不是很好,弄了一个简单的例子! 首先一般图片上会有两个图片按钮,一个左切换的按钮一个右切换的按钮,当我们单击左切换按钮时,原来的图片就会向右移动XX像素,然后它左边的图片就会显示到框里,而原来的图片被隐藏了,单击右切换按钮的原理跟左按钮相似.但如果一直点同一个按钮的话,本来这个图片切换框只有3张图片的话,

WEBJX分享漂亮的jQuery图片切换效果插件

文章简介:10款非常时尚的 jQuery 焦点广告插件. 这篇文章向大家推荐几款非常漂亮的 jQuery图片切换效果插件.jQuery 是最流行和使用最广泛的 JavaScript框架,它简化了 HTML 文档遍历,事件处理,动画以及 Ajax 交互,帮助 Web 开发人员更快速的实现各种精美的界面交互效果. 其中,jQuery 最令人印象深刻的应用之一就是对图片的处理,它可以让帮助你在你的项目中加入一些让人惊叹的图片切换效果.希望这些插件对你有所帮助,能够帮助你节省时间和精力. ZOOM –

jquery图片切换效果

<!doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3c.org/tr/1999/rec-html401-19991224/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>jquery图片切换效果</ti

完美JQuery图片切换效果的简单实现_jquery

效果如下: css: body { font-family:"Microsoft Yahei"; } body,ul,li,img,h3,dl,dd,dt,h1{margin:0px;padding:0px;list-style:none;} img{vertical-align: top;} /***大图切换***/ .scroll_view{margin: 0px auto;overflow:hidden;position: relative;} .photo_view li{po

jQuery图片切换插件jquery.cycle.js使用示例_jquery

Cycle是一个很棒的jQuery图片切换插件,提供了非常好的功能来帮助大家更简单的使用插件的幻灯功能 下载cycle插件并引入,此时,注意把引入它的代码放在引入jQuery主文件之后. 复制代码 代码如下: <head> <script type="text/javascript" src="js/jquery-1.8.0.min.js"></script> <script type="text/javascri

jquery图片切换插件

 本文给大家分享的是一则使用jQuery实现图片切换的插件,效果非常不错,兼容性也很好,推荐给大家,有需要的小伙伴快来参考下吧.       代码如下: /** * 图片切换插件 * Dependence jquery-1.7.2.min.js **/ (function ($) { //调用方式 $('#silder').imgSilder({s_width:564, s_height:293, is_showTit:true, s_times:3000,css_link:'css/style

jQuery 图片切换插件(代码比较少)_jquery

复制代码 代码如下: // JavaScript Document ;(function($){ $.fn.extend({ "zj_ppt":function(value){ //默认参数定义 var $this = $(this); value = $.extend({ "time":2000, //间隔变化动画时间 "con":0, "sto":true, "count":"count&qu

不错的几款国外jQuery图片播放实例和源码

1.jQuery水平5屏图片播放器 这是一款基于jQuery的图片播放插件,一共分5屏,有JS代码基础的朋友也可以根据自己的需求修改需要展示的图片数量,这个jQuery图片播放插件整体滑动比较流畅,兼容所有主流浏览器. 2.jQuery图片水平播放插件 这是一个非常简洁但又十分实用的jQuery图片水平播放插件,这个jQuery图片播放插件允许你自己定义同时滚动几张图片,并且滑动很平滑. 3.jQuery仿苹果图片播放器 这是一款基于jQuery的仿苹果样式的图片播放器,这个图片播放器配置简单,