我在一个项目中使用 bg switcher jQuery,但我在 Chrome 上遇到了问题。
我正在使用的代码是:
$(document).ready(function(){
$(".wrapper").bgswitcher({
images: ["img/1.jpg", "img/2.jpg", "img/3.jpg"], // Background images
effect: "fade", // fade, blind, clip, slide, drop, hide
interval: 5000, // Interval of switching
loop: false, // Loop the switching
shuffle: false, // Shuffle the order of an images
duration: 800, // Effect duration
easing: "swing", // Effect easing
position: "center top"
});
});
有人知道如何解决吗?