jquery上下左右图片无缝滚动代码

版权:原创 更新时间:1年以上
[该文章底部包含文件资源,可根据自己情况,决定是否下载资源使用,时间>金钱,如有需要,立即查看资源]

以下是 jquery上下左右图片无缝滚动代码 的示例演示效果:

当前平台(PC电脑)
  • 平台:

部分效果截图:

jquery上下左右图片无缝滚动代码

HTML代码(index.html):

<!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" />
<title>jquery上下左右图片无缝滚动代码</title>
<style type="text/css">
*{padding:0; margin:0; font-family:"微软雅黑"}
li{list-style:none; padding:0; margin:0}
.mains{width:800px;padding-left:15px;margin:0 auto}
.mains .title{font-size:25px;text-align:center;padding:10px 5px}

.g1,.g2,.g3,.g4{width:380px; height:180px; float:left; margin:0 5px 5px 0}
</style>

<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="jquery.imgscroll.min.js"></script>
<script type="text/javascript">
$(function(){

	imgScroll.rolling({
		name:'g1',
		width:'380px',
		height:'180px',
		direction:'top',
		speed:10,
		addcss:true
	});
	
	imgScroll.rolling({
		name:'g2',
		width:'380px',
		height:'180px',
		direction:'left',
		speed:20,
		addcss:true
	});
	
	imgScroll.rolling({
		name:'g3',
		width:'380px',
		height:'180px',
		direction:'bottom',
		speed:30,
		addcss:true
	});
	
	imgScroll.rolling({
		name:'g4',
		width:'380px',
		height:'180px',
		direction:'right',
		speed:40,
		addcss:true
	});

})
</script>
</head>

<body>
<div class="mains">
<div class="title">Jquery图片无缝连续循环滚动 支持上下左右的滚动</div>
<div class="g1">
	<ul>
    <li><img src="img/1.jpg"></li>
    <li><img src="img/2.jpg"></li>
    <li><img src="img/3.jpg"></li>
    <li><img src="img/4.jpg"></li>
    <li><img src="img/5.jpg"></li>
    </ul>
</div>

<div class="g2">
	<ul>
    <li><img src="img/1.jpg"></li>
    <li><img src="img/2.jpg"></li>
    <li><img src="img/3.jpg"></li>
    <li><img src="img/4.jpg"></li>
    <li><img src="img/5.jpg"></li>
    </ul>
</div>

<div class="g3">
	<ul>
    <li><img src="img/1.jpg"></li>
    <li><img src="img/2.jpg"></li>
    <li><img src="img/3.jpg"></li>
    <li><img src="img/4.jpg"></li>
    <li><img src="img/5.jpg"></li>
    </ul>
</div>

<div class="g4">
	<ul>
    <li><img src="img/1.jpg"></li>
    <li><img src="img/2.jpg"></li>
    <li><img src="img/3.jpg"></li>
    <li><img src="img/4.jpg"></li>
    <li><img src="img/5.jpg"></li>
    </ul>
</div>
</div>
</body>
</html>








JS代码(jquery.imgscroll.min.js):

/* Copyright (c) 2014 xcsoft.cn(http://www.xcsoft.cn) * Author:Xiucheng Yang * Version:2.6.0 * MyQQ:549642084 * LastUpdateTime:2014-11-08 * Used Url:http://www.xcsoft.cn/article/411.html * */
var imgScroll ={
	fspeed:1E3,aspeed:5E3,gradual:function(b,e,c){
	function m(){
	d > r - 1 && (d = 0);
	imgScroll.myGradual(a,d,{
	imginfo:s,direction:k,height:p,speed:h,descli:f,infoli:g}
);
	d++}
var a = b.name,l,d = 1;
	c = 0 == b.addcss ? 0:1;
	e = e ? e:imgScroll.aspeed;
	var h = b.speed ? b.speed:100,f = $("." + a + ">.imgdesc li").length,g = $("." + a + ">.imginfo li").length,r = $("." + a + ">.imglist li").length;
	1 == c && ($("." + a).css({
	position:"relative",overflow:"hidden",width:b.width,height:b.height}
),$("." + a).find(".imglist li,.imglist img").css({
	width:b.width,height:b.height}
),$("." + a).find(".imglist li").css({
	position:"absolute"}
),$("." + a + ">.imglist").css({
	position:"absolute"}
),(0 < $("." + a + ">.pre").length || 0 < $("." + a + ">.next").length) && $("." + a + ">.pre,." + a + ">.next").css({
	position:"absolute"}
));
	if (0 < g){
	$("." + a + ">.imginfo,." + a + ">.imginfo li").css({
	position:"absolute"}
);
	var s = b.showinfo ? b.showinfo:"gradual",k = b.infodirection ? b.infodirection:"bottom",p = "left" == k || "right" == k ? $("." + a + ">.imginfo").width():$("." + a + ">.imginfo").height();
	1 == c && $("." + a + ">.imginfo,." + a + ">.imginfo li").css({
	position:"absolute"}
);
	if ("gradual" == s) $("." + a + ">.imginfo li:gt(0)").fadeTo(0,0);
	else switch (k){
	case "left":$("." + a + ">.imginfo li:gt(0)").css({
	left:"-" + p + "px"}
);
	break;
	case "top":$("." + a + ">.imginfo li:gt(0)").css({
	top:"-" + p + "px"}
);
	break;
	case "right":$("." + a + ">.imginfo li:gt(0)").css({
	right:"-" + p + "px"}
);
	break;
	case "bottom":$("." + a + ">.imginfo li:gt(0)").css({
	bottom:"-" + p + "px"}
)}
}
0 < f && (1 == c && $("." + a + ">.imgdesc").css({
	position:"absolute"}
),$("." + a + ">.imgdesc li:eq(0)").addClass("hover"));
	$("." + a + ">.imglist li:gt(0)").fadeTo(0,0);
	imgScroll.addDataIndex(a,0);
	l = setInterval(function(){
	m()}
,e);
	$("." + a + ">.imgdesc li").hover(function(){
	clearInterval(l);
	var b = $(this).index();
	d = b + 1;
	imgScroll.myGradual(a,b,{
	imginfo:s,direction:k,height:p,speed:h,descli:f,infoli:g}
)}
,function(){
	l = setInterval(function(){
	m()}
,e)}
);
	$("." + a + ">.imglist li img,." + a + " .pre,." + a + " .next").hover(function(){
	clearInterval(l)}
,function(){
	l = setInterval(function(){
	m()}
,e)}
);
	$("." + a + " .pre").click(function(b){
	b = imgScroll.getDataIndex(a);
	d = parseInt(b - 1);
	0 > d && (d = r - 1);
	imgScroll.myGradual(a,d,{
	imginfo:s,direction:k,height:p,speed:h,descli:f,infoli:g}
);
	d++}
);
	$("." + a + " .next").click(function(b){
	d > r - 1 && (d = 0);
	imgScroll.myGradual(a,d,{
	imginfo:s,direction:k,height:p,speed:h,descli:f,infoli:g}
);
	d++}
)}
,scroll:function(b,e,c){
	function m(){
	if (h > k - 1 || f <= -(n * k - n)) h = 0,f = n;
	f -= n;
	imgScroll.myScroll(a,h,l,f,c,k,{
	imginfo:u,direction:t,height:q,speed:r,descli:p,infoli:v}
);
	h++}
var a = b.name,l = b.direction ? b.direction:"left",d,h = 1,f = 0,g = 0 == b.addcss ? 0:1,r = b.speed ? b.speed:100;
	c = c ? c:imgScroll.fspeed;
	var s = e ? e:imgScroll.aspeed,k = $("." + a + ">.imglist li").length,p = $("." + a + ">.imgdesc li").length,v = $("." + a + ">.imginfo li").length;
	1 == g && ($("." + a).css({
	position:"relative",overflow:"hidden",width:b.width,height:b.height}
),$("." + a).find(".imglist li,.imglist img").css({
	width:b.width,height:b.height}
),(0 < $("." + a + ">.pre").length || 0 < $("." + a + ">.next").length) && $("." + a + ">.pre,." + a + ">.next").css({
	position:"absolute"}
),$("." + a + ">.imglist").css({
	position:"absolute"}
));
	switch (l){
	case "left":var n = $("." + a + ">.imglist li:first img").width();
	1 == g && $("." + a + ">.imglist li").css({
	"float":"left",position:"relative"}
);
	$("." + a + ">.imglist").css({
	left:f + "px",width:k * n + "px"}
);
	break;
	case "right":n = $("." + a + ">.imglist li:first img").width();
	1 == g && $("." + a + ">.imglist li").css({
	"float":"left",position:"relative"}
);
	$("." + a + ">.imglist").css({
	right:f + "px",width:k * n + "px"}
);
	break;
	case "top":n = $("." + a + ">.imglist li:first img").height();
	1 == g && $("." + a + ">.imglist li").css({
	position:"relative"}
);
	$("." + a + ">.imglist").css({
	top:f + "px",height:k * n + "px"}
);
	break;
	case "bottom":n = $("." + a + ">.imglist li:first img").height(),1 == g && $("." + a + ">.imglist li").css({
	position:"relative"}
),$("." + a + ">.imglist").css({
	bottom:f + "px",height:k * n + "px"}
)}
if (0 < v){
	var u = b.showinfo ? b.showinfo:"gradual",t = b.infodirection ? b.infodirection:"bottom",q = "left" == t || "right" == t ? $("." + a + ">.imginfo").width():$("." + a + ">.imginfo").height();
	1 == g && $("." + a + ">.imginfo,." + a + ">.imginfo li").css({
	position:"absolute"}
);
	if ("bottom" == l || "right" == l) if ("gradual" == u) $("." + a + ">.imginfo li:lt(" + (k - 1) + ")").fadeTo(0,0);
	else switch (t){
	case "bottom":$("." + a + ">.imginfo li:lt(" + (k - 1) + ")").css({
	bottom:"-" + q + "px"}
);
	break;
	case "right":$("." + a + ">.imginfo li:lt(" + (k - 1) + ")").css({
	right:"-" + q + "px"}
);
	break;
	case "left":$("." + a + ">.imginfo li:lt(" + (k - 1) + ")").css({
	left:"-" + q + "px"}
);
	break;
	case "top":$("." + a + ">.imginfo li:lt(" + (k - 1) + ")").css({
	top:"-" + q + "px"}
)}
else if ("gradual" == u) $("." + a + ">.imginfo li:gt(0)").fadeTo(0,0);
	else switch (t){
	case "left":$("." + a + ">.imginfo li:gt(0)").css({
	left:"-" + q + "px"}
);
	break;
	case "top":$("." + a + ">.imginfo li:gt(0)").css({
	top:"-" + q + "px"}
);
	break;
	case "right":$("." + a + ">.imginfo li:gt(0)").css({
	right:"-" + q + "px"}
);
	break;
	case "bottom":$("." + a + ">.imginfo li:gt(0)").css({
	bottom:"-" + q + "px"}
)}
}
0 < p && (1 == g && $("." + a + ">.imgdesc").css({
	position:"absolute"}
),$("." + a + ">.imgdesc li:eq(0)").addClass("hover"));
	imgScroll.addDataIndex(a,h);
	d = setInterval(function(){
	m()}
,s);
	$("." + a + ">.imgdesc li").hover(function(){
	clearInterval(d);
	var b = $(this).index();
	f = b * -n;
	h = b + 1;
	imgScroll.myScroll(a,b,l,f,c,k,{
	imginfo:u,direction:t,height:q,speed:r,descli:p,infoli:v}
)}
,function(){
	d = setInterval(function(){
	m()}
,s)}
);
	$("." + a + ">.imglist li img,." + a + " .pre,." + a + " .next").hover(function(){
	clearInterval(d)}
,function(){
	d = setInterval(function(){
	m()}
,s)}
);
	$("." + a + " .pre").click(function(b){
	h = imgScroll.getDataIndex(a) - 1;
	0 >= h && 0 <= f ? (h = k - 1,f = n * -h):f += n;
	imgScroll.myScroll(a,h,l,f,c,k,{
	imginfo:u,direction:t,height:q,speed:r,descli:p,infoli:v}
);
	h++}
);
	$("." + a + " .next").click(function(b){
	h > k - 1 && (h = 0,f = n);
	f -= n;
	imgScroll.myScroll(a,h,l,f,c,k,{
	imginfo:u,direction:t,height:q,speed:r,descli:p,infoli:v}
);
	h += 1}
)}
,myGradual:function(b,e,c){
	imgScroll.addDataIndex(b,e);
	$("." + b + ">.imglist li:eq(" + e + ")").siblings().stop().fadeTo(500,0);
	$("." + b + ">.imglist li:eq(" + e + ")").stop().fadeTo(500,1);
	0 < c.descli && ($("." + b + ">.imgdesc li:eq(" + e + ")").siblings().removeClass("hover"),$("." + b + ">.imgdesc li:eq(" + e + ")").addClass("hover"));
	if (0 < c.infoli) if ("gradual" == c.imginfo) $("." + b + ">.imginfo li:eq(" + e + ")").siblings().stop().fadeTo(500,0),$("." + b + ">.imginfo li:eq(" + e + ")").stop().fadeTo(500,1);
	else switch (c.direction){
	case "top":$("." + b + ">.imginfo li:eq(" + e + ")").siblings().stop().animate({
	top:"-" + c.height + "px"}
,c.speed);
	setTimeout(function(){
	$("." + b + ">.imginfo li").hide();
	$("." + b + ">.imginfo li:eq(" + e + ")").show().stop().animate({
	top:"0px"}
,c.speed)}
,c.speed / 2);
	break;
	case "left":$("." + b + ">.imginfo li:eq(" + e + ")").siblings().stop().animate({
	left:"-" + c.height + "px"}
,c.speed);
	setTimeout(function(){
	$("." + b + ">.imginfo li").hide();
	$("." + b + ">.imginfo li:eq(" + e + ")").show().stop().animate({
	left:"0px"}
,c.speed)}
,c.speed / 2);
	break;
	case "right":$("." + b + ">.imginfo li:eq(" + e + ")").siblings().stop().animate({
	right:"-" + c.height + "px"}
,c.speed);
	setTimeout(function(){
	$("." + b + ">.imginfo li").hide();
	$("." + b + ">.imginfo li:eq(" + e + ")").show().stop().animate({
	right:"0px"}
,c.speed)}
,c.speed / 2);
	break;
	case "bottom":$("." + b + ">.imginfo li:eq(" + e + ")").siblings().stop().animate({
	bottom:"-" + c.height + "px"}
,c.speed),setTimeout(function(){
	$("." + b + ">.imginfo li").hide();
	$("." + b + ">.imginfo li:eq(" + e + ")").show().stop().animate({
	bottom:"0px"}
,c.speed)}
,c.speed / 2)}
}
,myScroll:function(b,e,c,m,a,l,d){
	imgScroll.addDataIndex(b,e);
	0 < d.descli && ($("." + b + ">.imgdesc li:eq(" + e + ")").siblings().removeClass("hover"),$("." + b + ">.imgdesc li:eq(" + e + ")").addClass("hover"));
	if (0 < d.infoli) if (textindex = "right" == c || "bottom" == c ? parseInt(l - 1 - e):e,"gradual" == d.imginfo) $("." + b + ">.imginfo li:eq(" + textindex + ")").siblings().stop().fadeTo(500,0),$("." + b + ">.imginfo li:eq(" + textindex + ")").stop().fadeTo(500,1);
	else switch (d.direction){
	case "top":$("." + b + ">.imginfo li:eq(" + textindex + ")").siblings().stop().animate({
	top:"-" + d.height + "px"}
,d.speed);
	setTimeout(function(){
	$("." + b + ">.imginfo li").hide();
	$("." + b + ">.imginfo li:eq(" + textindex + ")").show().stop().animate({
	top:"0px"}
,d.speed)}
,d.speed / 2);
	break;
	case "left":$("." + b + ">.imginfo li:eq(" + textindex + ")").siblings().stop().animate({
	left:"-" + d.height + "px"}
,d.speed);
	setTimeout(function(){
	$("." + b + ">.imginfo li").hide();
	$("." + b + ">.imginfo li:eq(" + textindex + ")").show().stop().animate({
	left:"0px"}
,d.speed)}
,d.speed / 2);
	break;
	case "right":$("." + b + ">.imginfo li:eq(" + textindex + ")").siblings().stop().animate({
	right:"-" + d.height + "px"}
,d.speed);
	setTimeout(function(){
	$("." + b + ">.imginfo li").hide();
	$("." + b + ">.imginfo li:eq(" + textindex + ")").show().stop().animate({
	right:"0px"}
,d.speed)}
,d.speed / 2);
	break;
	case "bottom":$("." + b + ">.imginfo li:eq(" + textindex + ")").siblings().stop().animate({
	bottom:"-" + d.height + "px"}
,d.speed),setTimeout(function(){
	$("." + b + ">.imginfo li").hide();
	$("." + b + ">.imginfo li:eq(" + textindex + ")").show().stop().animate({
	bottom:"0px"}
,d.speed)}
,d.speed / 2)}
switch (c){
	case "left":$("." + b + ">.imglist").stop().animate({
	left:m + "px"}
,a);
	break;
	case "right":$("." + b + ">.imglist").stop().animate({
	right:m + "px"}
,a);
	break;
	case "top":$("." + b + ">.imglist").stop().animate({
	top:m + "px"}
,a);
	break;
	case "bottom":$("." + b + ">.imglist").stop().animate({
	bottom:m + "px"}
,a)}
}
,addDataIndex:function(b,e){
	$("." + b).attr("data-index",e)}
,getDataIndex:function(b){
	return $("." + b).attr("data-index")}
,rolling:function(b){
	function e(){
	g >= l * f / 2 && ("left" == a || "top" == a) ? g = 0:g <= l * f / 2 - h && ("right" == a || "bottom" == a) && (g = l * f - h);
	switch (a){
	case "left":c.find("ul").animate({
	left:"-" + g + "px"}
,0);
	g += 1;
	break;
	case "top":c.find("ul").animate({
	top:"-" + g + "px"}
,0);
	g += 1;
	break;
	case "right":c.find("ul").animate({
	left:"-" + g + "px"}
,0);
	g -= 1;
	break;
	case "bottom":c.find("ul").animate({
	top:"-" + g + "px"}
,0),g -= 1}
}
var c = $("." + b.name),m = 0 == b.addcss ? 0:1,a = b.direction ? b.direction:"left";
	c.find("ul").append(c.find("ul").html());
	var l = c.find("ul>li").length,d = b.speed ? b.speed:40;
	1 == m && (c.css({
	overflow:"hidden"}
),c.find("ul").css({
	position:"relative"}
),c.find("ul>li,ul>li>img").css({
	width:b.width,height:b.height}
),c.find("ul>li").css({
	"float":"left"}
));
	if ("left" == a || "right" == a){
	var h = c.width(),f = c.find("ul>li:first").width(),g = "left" == a ? 0:l * f - h;
	1 == m && c.find("ul").css({
	width:l * f + "px",height:c.find("ul>li:first").height()}
)}
else h = c.height(),f = c.find("ul>li:first").height(),g = "top" == a ? 0:l * f - h,1 == m && c.find("ul").css({
	height:l * f + "px",width:c.find("ul>li:first").width()}
);
	var r = setInterval(function(){
	e()}
,d);
	c.find("ul>li").hover(function(){
	clearInterval(r)}
,function(){
	r = setInterval(function(){
	e()}
,d)}
)}
}
;
	
附件:下载该文件资源,减少时间成本(增值服务)
留言
该资源可下载
File Source
.rar
289.52 KB
Html Js 滚动条
最新结算
HTM5 Canvas实现3D飞机飞行动画特效代码
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
HTM5 Canvas实现3D飞机飞行动画特效代码
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
jQuery图像缩放工具插件Zoomer特效代码
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
jQuery图像缩放工具插件Zoomer特效代码
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
Labelauty–jQuery单选框_复选框美化插件特效代码
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
Labelauty–jQuery单选框_复选框美化插件特效代码
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
jQuery网页版打砖块小游戏源码
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
jQuery网页版打砖块小游戏源码
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
jquery虚拟键盘中文打字效果js代码
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
jquery虚拟键盘中文打字效果js代码
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
我们力求给您提供有用的文章,再此基础上,会附加营收资源,不做任何广告,让平台可以更好发展 若您发现您的权利被侵害,或使用了您的版权,请发邮件联系 sunlifel@foxmail.com ggbig觉得 : 不提供源码的文章不是好文章
合作伙伴
联系我们
  • QQ:21499807
  • 邮箱:sunlifel@foxmail.com
  • QQ扫一扫加QQ
    QQ扫一扫
Copyright 2023-2024 ggbig.com·皖ICP备2023004211号-1
打赏文章