jQuery技术

jQuery实现企业网站横幅焦点图切换功能实例

字号+ 作者:H5之家 来源:H5之家 2015-11-21 17:46 我要评论( )

这篇文章主要介绍了jQuery实现企业网站横幅焦点图切换功能,实例分析了jQuery企业网站焦点图的详细实现方法,非常简单实用,希望我们提供的文章能够对你解决JavaScr

<!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="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> <a href="http://www.daxueit.com/"><img /></a> <div> <img src="11.jpg" uri="11.jpg" link="http://www.daxueit.com/"/> <img src="22.jpg" uri="22.jpg" link="http://www.daxueit.com/"/> <img src="33.jpg" uri="33.jpg" link="http://www.daxueit.com/"/> <img src="44.jpg" uri="44.jpg" link="http://www.daxueit.com/"/> <img src="55.jpg" uri="55.jpg" link="http://www.daxueit.com/"/> </div> </div> <div> </div> </body> </html>

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • 7个有用的jQuery小技巧

    7个有用的jQuery小技巧

    2016-02-26 13:02

  • jQuery制作select双向选择列表

    jQuery制作select双向选择列表

    2016-02-26 11:00

  • 全面详细的jQuery常见开发技巧手册

    全面详细的jQuery常见开发技巧手册

    2016-02-26 10:02

  • 强大的jQuery移动插件Top 10

    强大的jQuery移动插件Top 10

    2016-02-25 09:05

网友点评
d