所以,我希望有2个按钮Next和Previous,它们必须在文本中向上或向下滑动。现在我让它上下滑动80px,这很不错。
但我想知道是否有可能让它滑到下一个p标签?你会怎么做?
我的代码现在就是这样:
$('#next').click(function(){
$('#contentText').animate({
'top':'-=80px'
});
});
//
$('#previous').click(function(){
$('#contentText').animate({
'top':'+=80px'
});
});
//