jquery-guide icon indicating copy to clipboard operation
jquery-guide copied to clipboard

Scroll feature is not working properly on Mobile screens

Open vatsala-glory opened this issue 6 years ago • 2 comments

When my walkthrough is going to the next step. It doesnot scroll on mobile screens

vatsala-glory avatar Oct 10 '19 15:10 vatsala-glory

its not working on desktop either

dyuthichandran avatar Feb 27 '20 06:02 dyuthichandran

add a scrollTop function while calling the script

function domoGuide() { guide = $.guide({ actions: [ {

        {
            element: $('#home_tour7'),
            content: '<p>Access the menu for more options</p>',
            offsetX: -140,
            offsetY: 0,
            beforeFunc: function (g) { 
                $('html, body').animate({
                    scrollTop: $("#home_tour7").offset().top
                },0)
            }
        }
          }  
    ]
});

dyuthichandran avatar Feb 27 '20 06:02 dyuthichandran