为什么jquery plusslider不能在谷歌浏览器中工作,但在Firefox中工作

时间:2012-09-28 05:06:13

标签: jquery jquery-plugins slider

我正在使用jquery plusslider,但问题是它在firefox中工作正常,但滑块在google chrome中不起作用。每当我使用slidertype作为推子时,滑块在两者中都能正常工作,但我想将用户的slidertype用作滑块并且它不起作用。问题是什么。提前感谢任何帮助/建议和你的时间。谢谢..

$(document).ready(function() {
    $('#slider').plusSlider({ 
        sliderEasing: 'easeInOutExpo', // Anything other than 'linear' and 'swing' requires the easing plugin
        paginationBefore: true,
        createArrows: true,
        width: 1920,
        height:580,
        sliderType: 'slider', // Choose whether the carousel is a 'slider' or a 'fader'
        displayTime: 5000
    });

1 个答案:

答案 0 :(得分:0)

请参阅 Edit 它适用于Chrome浏览器

$('#slider').plusSlider({
        sliderEasing: 'easeInOutExpo', // Anything other than 'linear' and 'swing' requires the easing plugin
        paginationThumbnails: true,
        sliderType: 'slider' // Choose whether the carousel is a 'slider' or a 'fader'
    });​

您在上次});

中遗失了
相关问题