0

使用 CarouFredSel 图像循环加载页面时,它总是向右移动一点,直到我转到下一个图像或重新加载页面,在硬刷新后会发生同样的问题。

$( document ).ready(function() {
$(".photos").carouFredSel({
    width: "100%",
    height: "465px",
    items: {
        visible: 1,
        width: "variable",
        height: "465px"
    },
    scroll: {
        fx: "none",
        duration: 1
    },
    auto: 50000,
    prev: {
        button: ".prev",
        key: "left"
    },
    next: {
        button: ".next",
        key: "right"
    },
    pagination: {
        container: ".pagination",
        keys: true
    },
    swipe: true,
    mousewheel: true
})
});

http://coreytegeler.com/gl/music/

我之前尝试过多次发布此内容,但没有人给我任何信息,这真的让我很受挫,非常感谢您的帮助。

4

1 回答 1

1

我认为您的 CarouFredSel 配置没有问题。我对你的代码做了一个 jsfiddle,它工作正常。(http://jsfiddle.net/YdAee/)。我猜它与你的砌体代码有关,但这只是一个猜测,因为这会引发错误。看看这段代码:

///////MASONRY/////
if (randomComplete == true) {
    $('#boxes').masonry({
        itemSelector: '.box'
    });
}

randomComplete 的定义超出范围。

于 2013-07-30T21:14:55.130 回答