首頁 > web前端 > js教程 > 基於jquery的圖片幻燈展示源碼_jquery

基於jquery的圖片幻燈展示源碼_jquery

WBOY
發布: 2016-05-16 17:51:56
原創
1108 人瀏覽過
複製程式碼 程式碼如下:

//圖片幻燈展示
$(function() { var imgPro = {
imgWidth : 626, //圖片寬度
imgConLength : 0, //圖片總長度
index : 0, //導航鎖定索引
count : 0, //圖片數量
left : 0, //絕對定位left
pre : -1, //上個圖片索引
curr : 0, //目前圖片索引
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();
}
});
//點選導覽播放
$('# 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 ;
}

});

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板