手机上没有运行功能jquery

时间:2016-05-09 10:57:35

标签: javascript jquery mobile

我在jQuery的滚动页面上有一个动画,在移动设备上看是有线的。

如何设置jQuery以便不在移动浏览器中显示动画? Tin the main.js我还有其他功能需要保留两个浏览器。

如果这是动画的帮助:

$(function() {
    var $elems = $('.animateblock');
    var winheight = $(window).height();
    var fullheight = $(document).height();
    $(window).scroll(function() {
        animate_elems();
    });
    function animate_elems() {
        wintop = $(window).scrollTop();
        $elems.each(function() {
            $elm = $(this);
            if ($elm.hasClass('animated')) {
                return true;
            }
            topcoords = $elm.offset().top;
            if (wintop > (topcoords - (winheight * .90))) {
                $elm.addClass('animated');
            }
        });
    }
});

谢谢!

0 个答案:

没有答案