Image drops to right before fade on Chrome using bg switcher jquery -


i'm using bg switcher jquery in project i'm facing issue on chrome.

the code i'm using is:

$(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 switching         shuffle: false, // shuffle order of images         duration: 800, // effect duration         easing: "swing", // effect easing         position: "center top"     }); }); 

someone know how fix it?


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -