国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

jquery左右滾動焦點圖banner圖片鼠標經(jīng)過顯示上下頁按鈕

2019-11-20 21:54:17
字體:
供稿:網(wǎng)友
jquery左右滾動焦點圖banner圖片,鼠標經(jīng)過顯示上下頁
適合寬和高都比較大的頁面使用
 
演示
復(fù)制代碼 代碼如下:

<div class="bannerbox">
<div id="focus">
<ul>
<li><a target="_blank">
<img src="../dandong.png" alt="" /></a></li>
<li><a target="_blank">
<img src="../mohe.png" alt="" /></a></li>
<li><a target="_blank">
<img src="../changbaishan.png" alt="" /></a></li>
<li><a target="_blank">
<img src="../erlianhaote.png" alt="" /></a></li>
</ul>
</div>
</div>

復(fù)制代碼 代碼如下:

@charset "utf-8";
img { border: 0px; }
.bannerbox { width: 320px; height: 150px; overflow: hidden; margin: 0px auto; }
#focus { width: 320px; height: 150px; clear: both; overflow: hidden; position: relative; float: left; }
#focus ul { width: 320px; height: 150px; float: left; position: absolute; clear: both; padding: 0px; margin: 0px; }
#focus ul li { float: left; width: 320px; height: 150px; overflow: hidden; position: relative; padding: 0px; margin: 0px; }
#focus .preNext { width: 250px; height: 150px; position: absolute; top: 0px; cursor: pointer; }
#focus .pre { left: 0; background: url(../images/sprite.png) no-repeat left center; }
#focus .next { rightright: 0; background: url(../images/sprite1.png) no-repeat rightright center; }

js文件
復(fù)制代碼 代碼如下:

$(function () {
var sWidth = $("#focus").width();
var len = $("#focus ul li").length;
var index = 0;
var picTimer;
var btn = "<div class='btnBg'></div><div class='btn'>";
for (var i = 0; i < len; i++) {
btn += "<span></span>";
}
btn += "</div><div class='preNext pre'></div><div class='preNext next'></div>";
$("#focus").append(btn);
$("#focus .btnBg").css("opacity", 0);
$("#focus .btn span").css("opacity", 0.4).mouseenter(function () {
index = $("#focus .btn span").index(this);
showPics(index);
}).eq(0).trigger("mouseenter");
$("#focus .preNext").css("opacity", 0.0).hover(function () {
$(this).stop(true, false).animate({ "opacity": "0.5" }, 300);
}, function () {
$(this).stop(true, false).animate({ "opacity": "0" }, 300);
});
$("#focus .pre").click(function () {
index -= 1;
if (index == -1) { index = len - 1; }
showPics(index);
});
$("#focus .next").click(function () {
index += 1;
if (index == len) { index = 0; }
showPics(index);
});
$("#focus ul").css("width", sWidth * (len));
$("#focus").hover(function () {
clearInterval(picTimer);
}, function () {
picTimer = setInterval(function () {
showPics(index);
index++;
if (index == len) { index = 0; }
}, 2800);
}).trigger("mouseleave");
function showPics(index) {
var nowLeft = -index * sWidth;
$("#focus ul").stop(true, false).animate({ "left": nowLeft }, 300);
$("#focus .btn span").stop(true, false).animate({ "opacity": "0.4" }, 300).eq(index).stop(true, false).animate({ "opacity": "1" }, 300);
}
});
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 永善县| 民乐县| 屏山县| 石城县| 枝江市| 田林县| 屯门区| 大名县| 开平市| 通许县| 海南省| 广丰县| 丽水市| 聂荣县| 昭通市| 尉氏县| 顺平县| 无极县| 垣曲县| 武功县| 新余市| 额济纳旗| 准格尔旗| 安阳县| 灌阳县| 玉田县| 赞皇县| 桃园市| 余江县| 永修县| 武邑县| 马关县| 资源县| 分宜县| 和平区| 衡阳市| 军事| 兴化市| 平武县| 平山县| 苗栗市|