I am using http://bxslider.com and I want to remove all effects. To be clear, I want effect like hide() and show() bewteen my images, just that. Is anything like this possbile to do?
Thanks!
I am using http://bxslider.com and I want to remove all effects. To be clear, I want effect like hide() and show() bewteen my images, just that. Is anything like this possbile to do?
Thanks!
Maybe try with speed param. From documentation:
speed
In ms, duration of time slide transitions will occupy
Try set it to 1ms
or 0ms
Have you actually tried passing in 'fade' to the mode option on constructor?
$("#slideshow").bxSlider({ mode:'fade' });
I would try using the onBeforeSlide callback
function(currentSlideNumber, totalSlideQty, currentSlideHtmlObject){
// perform actions here
}
and call .hide()
on both the currentSlideHtmlObject
and the next slide in the sequence.
then you can use the onAfterSlide
callback to .show() the next slide.