首页 > 其他分享 >JQ 带缩略图的焦点图

JQ 带缩略图的焦点图

时间:2023-06-26 22:35:37浏览次数:41  
标签:function index 缩略图 img show 焦点 flashBanner mask JQ


banner.css

.indexCon{width:782px;overflow:hidden;}
.indexCon .flashBanner{width:782px;height:326px;overflow:hidden;margin-bottom:12px;}
.flashBanner{position:relative;}
.flashBanner .mask{height:32px;line-height:32px;background-color:#000;width:100%;text-align:right;
	position:absolute;left:0;bottom:-32px;filter:alpha(opacity=70);-moz-opacity:0.7;opacity:0.7;overflow:hidden;}
.flashBanner .mask img{vertical-align:middle;margin-right:10px;cursor:pointer;}
.flashBanner .mask img.show{margin-bottom:3px;}
img{border:0 none;}

 

banner.js

$(function(){
	$(".flashBanner").each(function(){
		var timer;
		$(".flashBanner .mask img").click(function(){
			var index = $(".flashBanner .mask img").index($(this));	
			changeImg(index);
		}).eq(0).click();
		$(this).find(".mask").animate({
			"bottom":"0"	
		},700);
		$(".flashBanner").hover(function(){
			clearInterval(timer);	
		},function(){
			timer = setInterval(function(){
				var show = $(".flashBanner .mask img.show").index();
				if (show >= $(".flashBanner .mask img").length-1)
					show = 0;
				else
					show ++;
				changeImg(show);
			},3000);
		});
		function changeImg (index)
		{
			$(".flashBanner .mask img").removeClass("show").eq(index).addClass("show");
			$(".flashBanner .bigImg").parents("a").attr("href",$(".flashBanner .mask img").eq(index).attr("link"));
			$(".flashBanner .bigImg").hide().attr("src",$(".flashBanner .mask img").eq(index).attr("uri")).fadeIn("slow");
		}
		timer = setInterval(function(){
			var show = $(".flashBanner .mask img.show").index();
			if (show >= $(".flashBanner .mask img").length-1)
				show = 0;
			else
				show ++;
			changeImg(show);
		},3000);
	});
});

 

demo.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></title>
<link rel="stylesheet" type="text/css" href="css/base.css" />
<link rel="stylesheet" type="text/css" href="css/banner.css" />
<script type="text/javascript" src="js/jquery-1.10.1.min.js"></script>
<script type="text/javascript" src="js/banner.js"></script>
</head>
<body>
<div class="indexCon fl">
	<div class="flashBanner">
		<a href="###"><img class="bigImg" width="782" height="326" /></a>
		<div class="mask">
			<img src="images/201207261743282.jpg" uri="images/201207261743282.jpg" link="http://www.onestopweb.cn/" width="60" height="22" />
			<img src="images/201109291718573.jpg" uri="images/201109291718573.jpg" link="http://www.onestopweb.cn/" width="60" height="22" />
			<img src="images/201109291719040.jpg" uri="images/201109291719040.jpg" link="http://www.onestopweb.cn/" width="60" height="22" />
			<img src="images/201207311057406.jpg" uri="images/201207311057406.jpg" link="http://www.onestopweb.cn/" width="60" height="22" />
			<img src="images/201109291718425.jpg" uri="images/201109291718425.jpg" link="http://www.onestopweb.cn/" width="60" height="22" />
			<img src="images/201207261743282.jpg" uri="images/201207261743282.jpg" link="http://www.onestopweb.cn/" width="60" height="22" />
			<img src="images/201109291718573.jpg" uri="images/201109291718573.jpg" link="http://www.onestopweb.cn/" width="60" height="22" />
			<img src="images/201109291719040.jpg" uri="images/201109291719040.jpg" link="http://www.onestopweb.cn/" width="60" height="22" />
			<img src="images/201207311057406.jpg" uri="images/201207311057406.jpg" link="http://www.onestopweb.cn/" width="60" height="22" />
			<img src="images/201109291718425.jpg" uri="images/201109291718425.jpg" link="http://www.onestopweb.cn/" width="60" height="22" />
			<img src="images/201207261743282.jpg" uri="images/201207261743282.jpg" link="http://www.onestopweb.cn/" width="60" height="22" />
			<img src="images/201109291718573.jpg" uri="images/201109291718573.jpg" link="http://www.onestopweb.cn/" width="60" height="22" />
			<img src="images/201109291719040.jpg" uri="images/201109291719040.jpg" link="http://www.onestopweb.cn/" width="60" height="22" />
			<img src="images/201207311057406.jpg" uri="images/201207311057406.jpg" link="http://www.onestopweb.cn/" width="60" height="22" />
		</div>
	</div>
</div>
</body>
</html>

 

效果图:

JQ 带缩略图的焦点图_html


 

 

 

 

 

 

 

标签:function,index,缩略图,img,show,焦点,flashBanner,mask,JQ
From: https://blog.51cto.com/u_16171388/6558650

相关文章

  • JQ jQuery插件如何开发
    <!DOCTYPEhtml><htmllang="zh-cn"><head><metacharset="UTF-8"><title></title><scriptsrc="jquery-1.10.1.min.js"></script></head><body><script>$.extend......
  • JQ 合成事件
    style.css*{margin:0;padding:0;} body{font-size:13px;line-height:130%;padding:60px}#panel{width:300px;border:1pxsolid#0050D0}.head{padding:5px;background:#96E555;cursor:pointer}.content{padding:10px;text-indent:2em;border-......
  • JQ 事件对象的属性
    demo.html<html><head><title>event.type</title><metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/><scriptsrc="js/jquery-1.10.1.min.js"type="text/javascript">......
  • JQ 移除事件
    demo.html<html><head><metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/><title></title><styletype="text/css">*{margin:0;padding:0;} body{font-size:13px;line-hei......
  • JQ 自动加载页面
    demo.html<listyle="opacity:0;-moz-opacity:0;filter:alpha(opacity=0);"><p>---------------</p></li><listyle="opacity:0;-moz-opacity:0;filter:alpha(opacity=0);"><p>阅谁问君诵,水落清香浮</p></li>......
  • JQ 其它的点击事件用法
    demo.html<html><head><title></title><metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/><style>.over{ color:red; background:#888;}</style><scriptsrc="js/j......
  • JQ 复选框全选反选
    <!DOCTYPE><html><head><metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/><title></title><scriptsrc="js/jquery-1.10.1.min.js"type="text/javascript">&......
  • JQ 多行文本框高度变化
    <html><head><metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/><title>文本框高度变化</title><styletype="text/css">*{ margin:0; padding:0; font:normal12px/17pxArial......
  • JQ 下拉框左右选择
    <html><head><metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/><title></title><styletype="text/css">*{ margin:0; padding:0;}div.centent{ float:left; text-......
  • JQ 表格展开伸缩
    style.csstable{border:0;border-collapse:collapse;}td{font:normal12px/17pxArial;padding:2px;width:100px;}th{font:bold12px/17pxArial;text-align:left;padding:4px;border-bottom:1pxsolid#333;width:100px;}.parent{background:#FFF38F;cursor:point......