移动设备上的Qode滑块暂停/停止

时间:2016-06-01 11:11:33

标签: javascript jquery wordpress

嗨,大家只是寻求一些帮助,在这里安静了一段时间。所以我想要的只是当网站显示在低于800px的任何屏幕时幻灯片中的第一张图片。我正在使用WordPress上的桥主题和滑块的Qode插件。我试着搜索每一个没有运气的地方。

这是js文件的链接

https://jsfiddle.net/zgh9cyww

这是我在标题中的代码

$j(window).resize(function() {
    if( $j(this).width() <= 800 ) {
        console.log("in ");
    $j(this).carousel({
        interval: 0,
        pause: true
    }); 
    }else{
        console.log("out ");
        $j(this).carousel({
            interval: 6000,
            pause: true
        }); 
    }
});

0 个答案:

没有答案