AbanteCart Community

AbanteCart Development => Customization help => Topic started by: kenzo on May 04, 2014, 04:35:24 PM

Title: Change Banner Slider (slideshow) to crossfade images
Post by: kenzo on May 04, 2014, 04:35:24 PM
Hello. Just getting into AbanteCart. Hoping to find a way to change the Banner Slider (slideshow) from it's default operation (of sliding) to crossfade images.  Hoping it might be a quick change to one of the js files but not my area of expertise. Any ideas/help would be greatly appreciated!
Title: Re: Change Banner Slider (slideshow) to crossfade images
Post by: abolabo on July 08, 2014, 04:44:09 AM
public_html/storefront/view/default_html5/javascript/custom.js

look at this
Quote
$(window).bind("load", function() {
    $(function () {
            $('#banner_slides').show();
            $('#banner_slides').oneByOne({
                className: 'oneByOneSlide',
                easeType: 'random',
                slideShow: true,
                slideShowDelay: 6000,
                responsive: true
            });
        })
});