源码网,源码论坛,源码之家,商业源码,游戏源码下载,discuz插件,棋牌源码下载,精品源码论坛

 找回密码
 立即注册
查看: 220|回复: 23

[JavaScript] 简单的实现点击箭头图片切换的js代码

[复制链接]

7万

主题

861

回帖

32万

积分

论坛元老

Rank: 8Rank: 8

积分
329525
发表于 2012-11-15 10:36:38 | 显示全部楼层 |阅读模式
这个是一个简单的点击箭头图片切换的例子。JS部分采用过的是jQuery 步骤如下:

(1) 准备图片(左右箭头,以及一些示例图片)

(2) JS(jquery)的代码如下:
复制代码 代码如下:
<script type="text/javascript" src="JS/jquery-1.4.4.js"></script>
<script type="text/javascript">
var picPath = new Array();
picPath.push("Images/chuang_yhb.jpg");
picPath.push("Images/dong_wgx.jpg");
picPath.push("Images/gao_xsg.jpg");
var index = 0;
$(function() {
var top = $("#img1").offset().top;
var left = $("#img1").offset().left;
var height = $("#img1").height();
var width = $("#img1").width();
$("#img1").attr({ "src": picPath[index] });
$("#img1").parent().hover(function() {
//show the arrow left and right
$("#leftArrow").show();
$("#rightArrow").show();
$("#leftArrow").css({ "left": left - 10, "top": top + (height / 2) });
$("#rightArrow").css({ "left": left + width, "top": top + (height / 2) });
}, function() {
//hide the arrrow left and right
$("#leftArrow").hide();
$("#rightArrow").hide();
});
$("#leftArrow").click(function() {
if (index > 0) {
$("#img1").attr({ "src": picPath[--index] });
}
});
$("#rightArrow").click(function() {
if (index < picPath.length) {
$("#img1").attr({ "src": picPath[++index] });
}
});
});
</script>

(3) Html部分如下:
复制代码 代码如下:
<div>
<img id="img1" alt="Show Pictures" style="margin-left:100px;" />
<img id="leftArrow" alt="Left Arrow" src="Images/arrowa.jpg" style="position:absolute;display:none;width:50px;height:35px;z-index:99" />
<img id="rightArrow" alt="Right Arrow" src="Images/arrowb.jpg" style="position:absolute;display:none;width:50px;height:35px;z-index:99" />
</div>


下面再附一个js版的


[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
回复

使用道具 举报

0

主题

1万

回帖

0

积分

中级会员

Rank: 3Rank: 3

积分
0
发表于 2022-9-19 05:37:19 | 显示全部楼层
这个源码不错啊
回复 支持 反对

使用道具 举报

0

主题

2万

回帖

0

积分

中级会员

Rank: 3Rank: 3

积分
0
发表于 2022-9-23 06:59:26 | 显示全部楼层
很不错的源码论坛
回复 支持 反对

使用道具 举报

6

主题

2万

回帖

425

积分

中级会员

Rank: 3Rank: 3

积分
425
发表于 2023-6-24 03:49:02 | 显示全部楼层
灌灌灌灌水
回复 支持 反对

使用道具 举报

1

主题

2万

回帖

55

积分

注册会员

Rank: 2

积分
55
发表于 2023-7-3 11:31:47 | 显示全部楼层
哦哦哦ijhhsdj
回复 支持 反对

使用道具 举报

13

主题

2万

回帖

85

积分

注册会员

Rank: 2

积分
85
发表于 2023-9-14 18:50:24 | 显示全部楼层
老衲笑纳了
回复 支持 反对

使用道具 举报

27

主题

2万

回帖

331

积分

中级会员

Rank: 3Rank: 3

积分
331
发表于 2023-10-10 18:36:50 | 显示全部楼层
dfdsafdsfdsfdsf
回复 支持 反对

使用道具 举报

4

主题

2万

回帖

58

积分

注册会员

Rank: 2

积分
58
发表于 2023-11-2 01:12:09 | 显示全部楼层
66666666666
回复 支持 反对

使用道具 举报

0

主题

2万

回帖

115

积分

注册会员

Rank: 2

积分
115
发表于 2023-12-8 04:00:35 | 显示全部楼层
老衲笑纳了
回复 支持 反对

使用道具 举报

0

主题

2万

回帖

194

积分

注册会员

Rank: 2

积分
194
发表于 2024-1-11 19:05:36 | 显示全部楼层
vcxvcxv
回复 支持 反对

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

手机版|小黑屋|网站地图|源码论坛 ( 海外版 )

GMT+8, 2024-11-25 22:34 , Processed in 0.248805 second(s), 26 queries .

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表