嗨,大家只是寻求一些帮助,在这里安静了一段时间。所以我想要的只是当网站显示在低于800px的任何屏幕时幻灯片中的第一张图片。我正在使用WordPress上的桥主题和滑块的Qode插件。我试着搜索每一个没有运气的地方。
这是js文件的链接
这是我在标题中的代码
$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
});
}
});