iPad Flicker on auto scroll using JQuery and Scrollto plugin

前端 未结 11 1628
情话喂你
情话喂你 2020-12-12 16:52

I am having a bit of a weird problem with iOS platform for a page i am developing. This is the page in question. When clicking any of the case study images, the page will

11条回答
  •  遥遥无期
    2020-12-12 17:20

    Have you tried this:

    $('a[href=#target]').
        click(function(){
            var target = $('a[name=target]');
            if (target.length)
            {
                var top = target.offset().top;
                $('html,body').animate({scrollTop: top}, 1000);
                return false;
            }
        });
    

提交回复
热议问题