panlatent / jquery-guide

A jQuery plugin that new layout or new features using guide
MIT License
47 stars 19 forks source link

Scroll feature is not working properly on Mobile screens #2

Open vatsala-glory opened 5 years ago

vatsala-glory commented 5 years ago

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

dyuthichandran commented 4 years ago

its not working on desktop either

dyuthichandran commented 4 years ago

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)
            }
        }
          }  
    ]
});