zepto

$(".intro").on('click',function() {

var speed = $(document.body).scrollTop();

var curScroll = $("#m-read").offset().top;

setInterval(timer,1)

function timer(){

if(curScroll>speed){

speed += 5;

$(document.body).scrollTop(speed);

if(curScroll<=speed){

$(document.body).scrollTop(curScroll);

clearInterval(timer);

}

}

}

});

你可能感兴趣的:(zepto)