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

首頁 > 語言 > JavaScript > 正文

基于jquery的圖片幻燈展示源碼

2024-05-06 14:21:38
字體:
供稿:網(wǎng)友
代碼如下:
//圖片幻燈展示
$(function() {
var imgPro = {
imgWidth : 626, //圖片寬度
imgConLength : 0, //圖片總長度
index : 0, //導(dǎo)航鎖定索引
count : 0, //圖片數(shù)量
left : 0, //絕對定位left
pre : -1, //上個圖片索引
curr : 0, //當(dāng)前圖片索引
next : 1, //下個圖片索引
direction : 1, //自動播放方向
interTime : 3000//間隔時間
}
addImgAlt(imgPro.curr);
imgPro.count = $('#banner .list a img').length;
imgPro.imgConLength = imgPro.imgWidth * imgPro.count;
imgPro.left = parseInt($('#box .list ul').css("left"));
//播放定時器
var t = setInterval(imgPlay, imgPro.interTime);
$('#box .arrowl img, #box .arrowr img,#banner .list a,#box .count li,#box p').hover(function() {
clearInterval(t);
}, function() {
t = setInterval(imgPlay, imgPro.interTime);
});
// 自動播放圖片
function imgPlay() {
if ((imgPro.next != imgPro.count && imgPro.direction == 1) || (imgPro.pre == -1 && imgPro.direction == -1)) {
imgPro.direction = 1;
toNext();
} else {
imgPro.direction = -1;
toLast();
}

}

//點擊左方向
$('#box .arrowl img').click(function() {
if (imgPro.curr != 0) {
toLast();
}
});
//點擊右方向
$('#box .arrowr img').click(function() {
if (imgPro.next != imgPro.count) {
toNext();
}
});
//點擊導(dǎo)航播放
$('#box .count li').click(function() {
imgPro.index = $('#box .count li').index(this);
if (imgPro.curr != imgPro.index) {
imgPro.left += (imgPro.curr - imgPro.index) * imgPro.imgWidth;
addImgAlt(imgPro.index);
play();
$('#box .count li').eq(imgPro.curr).removeClass('current').end().eq(imgPro.index).addClass('current');
imgPro.curr = imgPro.index;
imgPro.pre = imgPro.index - 1;
imgPro.next = imgPro.index + 1;
}
});
//播放
function play() {
$('#box .list ul').css({
'opacity' : '0.5'
}).animate({
'left' : imgPro.left + "px",
'opacity' : '1'
}, 'slow');
}

//添加圖片說明信息
function addImgAlt(index) {
$("#box p").text($("#banner .list a img").eq(index).attr("alt"));
}

//上一張
function toLast() {
imgPro.left += imgPro.imgWidth;
addImgAlt(imgPro.pre);
play();
$('#box .count li').eq(imgPro.curr).removeClass('current').end().eq(imgPro.pre).addClass('current');
imgPro.pre--;
imgPro.curr--;
imgPro.next--;
}

//下一張
function toNext() {
imgPro.left -= imgPro.imgWidth;
addImgAlt(imgPro.next);
play();
$('#box .count li').eq(imgPro.curr).removeClass('current').end().eq(imgPro.next).addClass('current');
imgPro.pre++;
imgPro.curr++;
imgPro.next++;
}

});
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表

圖片精選

主站蜘蛛池模板: 剑川县| 万年县| 会昌县| 安平县| 龙岩市| 嘉峪关市| 南丹县| 泊头市| 鄢陵县| 庄河市| 寿光市| 澳门| 弥勒县| 阿尔山市| 商水县| 海南省| 旌德县| 博罗县| 邮箱| 灵武市| 武穴市| 郸城县| 朝阳县| 汉中市| 温州市| 卓资县| 巴楚县| 思茅市| 奎屯市| 习水县| 通渭县| 宜良县| 凤翔县| 德令哈市| 黄龙县| 明光市| 上蔡县| 增城市| 敦煌市| 长春市| 饶阳县|