如何延迟向下滚动几秒钟?
我的代码:
<script type="text/javascript">
$(function(){
$("#tmp_image-37113").click (function() {
$('#section--41340').show(150);
$('html, body').animate ({
scrollTop: $("#section--41340").offset().top
}, 2000);
return false;
});
});
</script>