Jquery 1.11.1和缓动效果

时间:2014-12-20 01:59:00

标签: jquery easing

我使用jquery 1.11.0和以下代码允许页面滚动,如果jquery.e使用easing 1.3

$(function() {
$('.page-scroll a').bind('click', function(event) {
    var $anchor = $(this);
    $('html, body').stop().animate({
        scrollTop: $($anchor.attr('href')).offset().top
    }, 1500, 'easeInOutExpo');
    event.preventDefault();
});

});

奇怪的是,这不适用于JQuery 1.11.1

任何想法为什么?更改日志没有提供任何线索。

0 个答案:

没有答案
相关问题