滑块功能

时间:2014-02-27 21:13:37

标签: javascript jquery css html

基本上我想为网站做一个小滑块,它会在每次滑动加载后加载但这不是我的问题。问题是功能。功能需要在图库(div)中获取元素(照片)的数量,并将许多时间作为照片的数量运行。 因此,例如,如果我有幻灯片3照片,它将运行3次,如果他们4次4次。

这是我的jquery代码:

function slider() {
    var div = 0;
    var photos = $(‘.photo_gallery’).length;
    /*
        $('.portfolio_gallery > div').eq(div - 1).hide(1500);
        $('.gallery_pages > img').eq(div - 1).attr("src", "../images/rotator.png");
        $('.portfolio_gallery > div').eq(div).show(1500);
        $('.gallery_pages > img').eq(div).attr("src", "../images/rotator.gif");
        div + 1;
    */
    if (div < photos) {
        setTimeout(function () {
            $('.portfolio_gallery > div').eq(div).show(1500);
            $('.gallery_pages > img').eq(div).attr("src", "../images/rotator.gif");
        }, 7000)
    }
}

请勿使用评论部分,但如果需要,可能会有所帮助。

1 个答案:

答案 0 :(得分:1)

不要重新发明滑块。你有JQuery,使用jCarousel