jQuery移动菜单在手机上运行缓慢(但在桌面浏览器上测试时效果很快)

时间:2017-07-18 21:23:34

标签: javascript jquery menu

这是我的网站:https://robothabanera.github.io/mogo/

我的目标是让我的手机让手机菜单顺畅运行。 该问题出现在手机中,即我在移动菜单中获得了滑入/滑出动画的一些斩波行为,我无法确定造成问题的原因。

如果有人可以通过手机访问此网站以了解我的意思,我将不胜感激。

最好检查script.js中的样式:

 //smoothscroll
$(".c-nav .c-main-menu .c-main-menu__link").on("click", function (e) {

                var currLink = $(this); 
                if (currLink.hasClass("trala")) {


                } else {
                    $("div.object1").remove();
                }

    if ($(window).width()<=1199) {

        e.preventDefault();
        $("html,body").animate({
            scrollTop: $($.attr(this, "href")).offset().top -60
        }, 1000, function() { 

            $(".c-main-menu").animate({"left": "-200px"}, 
            { duration: 200, queue: false });

            $("html,body").animate({"left": "0px"},
            {duration:200, quee: false});

    });



} else if ($(window).width() > 1199) {


    $("html,body").unbind("animate");


}

});

0 个答案:

没有答案