企业网站横幅焦点图切换,JavaScript版的图片切换,右下角显示等比例的缩略图,缩略图是调用的大图片,整体唯美,采用淡入淡出的方式图片轮播,点击后切换,不点击时自动轮播。是一款不错的网页上的图片展示效果。
<!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> <script type="text/javascript" src="/images/jquery-1.6.2.min.js"></script> <style> .flashBanner{width:782px;height:326px;overflow:hidden;margin:0 auto;} .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;} </style> <script type="text/javascript"> $(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); }); }); </script> </head> <body> <div class="flashBanner"> <a href="/"><img class="bigImg" width="782" height="326" /></a> <div class="mask"> <img src="/images/m01.jpg" uri="/images/m01.jpg" link="/" width="60" height="22"/> <img src="/images/m02.jpg" uri="/images/m02.jpg" link="/" width="60" height="22"/> <img src="/images/m03.jpg" uri="/images/m03.jpg" link="/" width="60" height="22"/> <img src="/images/m04.jpg" uri="/images/m04.jpg" link="/" width="60" height="22"/> <img src="/images/m05.jpg" uri="/images/m05.jpg" link="/" width="60" height="22"/> </div> </div> <div style="text-align:center;margin:50px 0; font:normal 14px/24px ‘MicroSoft YaHei‘;"> </div> </body> </html> <BR>所需js文件:<a href="/images/jquery-1.6.2.min.js" target=_blank>jquery-1.6.2.min.js</a> <BR><BR><hr><br>
时间: 2024-10-01 17:39:04