Forums » WordPress » Plugins » Serious Slider
-
AuthorPosts
-
February 1st, 2018 at 07:09 #59312
The slide transition (right to left) slides in a blank slide after which the image appears. If this is not a Serious Slider 1.1.0 bug it should be reported to Firefox bugzilla as Firefox is a ubiquitous preferred browser. I had to create a workaround based on code shown in the above mentioned post and attribute mutations for the Septera landing page without any changes to the slider.js. Please confirm if this is a Firefox or Serious Slider issue. Thanks…
February 1st, 2018 at 07:09 #59219This may not be a “serious slider” bug but since Firefox Quantum updated to 58.0.1 the slider when set to animation type ‘slide’, the ‘right to left’ slide either on automatic or via the manual right hand slider arrow, slides in blank before the image appears, and sporadically functions normally. Manually selecting the left hand slider arrow the ‘left to right’ slide functions normally. I have not observed this for Cyberfox’s Firefox ESR version, or for MS Edge. I assume this might be a Firefox issue, and not a slider bug revealed by this update just released on January 29, 2018. Can you confirm this? Thanks…
February 2nd, 2018 at 13:45 #59277It appears to be some kind of a timing problem which I confess I don’t really understand…
But as an experiment I modified …\plugins\cryout-serious-slider\resources\slider.js as follows:after line 253 I added 2 functions:
`function simulateClick() {
var event = new MouseEvent(‘click’, {
view: window,
bubbles: true,
cancelable: true
});
var body = document.getElementsByTagName(“body”)[0];
body.dispatchEvent(event);
}function runSim(count) {
window.setTimeout(function () {
simulateClick();
count -= 1;
if (count > 0) {
runSim(count);
}
}, 10);
}`in Carousel.prototype.slide after line 219 I added:
runSim(10);
This doesn’t explicitly add time to the Transition Duration but the additional thread
activity permits the slide image to get properly loaded before the slide animation starts,
eliminating the blank slide.February 4th, 2018 at 22:31 #59389The ‘Slide’ Transition Effect issue may be broader than just firefox 58.0.1, since for both firefox and edge I found than when the Septera landing page is open in 2 separate tabs at the same time, switching from one tab to the other may cause a blank slide to appear as the next slide image replaces it, that is if the animation is in progress on the selected tab, which it typically is. For this too I had to create a workaround.
-
AuthorPosts
The topic ‘Transition Effect 'Slide' broken in Firefox 58.0.1’ is closed to new replies.