Starting Rev Slider when scrolling down

Support Forums for LiveMesh Themes & Plugins Forums Appdev Theme Support Starting Rev Slider when scrolling down

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #3439
    ddekeizer
    Member

    Hi,

    I want to start the Rev Slider when scrolling down to it. Now the slider just starts when the page loads in. We want to delay this to the moment you scroll down to the slider. You can find the project at luxxus.nl, it is the second slider on the bottom of the page.

    Thank you in advance!

    #3451
    Raghavendra
    Moderator

    Great job on the site. Looks great.

    I have not really experimented much with revolution slider in this area but can provide some hints on how to proceed. I am interested in knowing if you are able to resolve this since we are planning to do something similar in our upcoming theme. Will update you if we get to this on our side.

    Here is how I would proceed presently using API exposed by the revolution slider and the jquery appear plugin included with Appdev –

    /* Pause the slider on load */
    revapi2bind("revolution.slide.onloaded",function (e) {
    	revapi2.revpause();
    });			
    
    /* On Scroll resume the slider */
    $('#rev_slider_2_2_wrapper').appear();
    $('#rev_slider_2_2_wrapper').on('appear', function () {
                    revapi2.revresume();
                });
    
Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘Appdev Theme Support’ is closed to new topics and replies.