我得到了带有 2 个按钮的滚动文本工作正常,但我似乎无法让它停止。如果margin < 0 with and if语句,我正在尝试禁用该按钮。
请在此处查看演示:
http://jsbin.com/udumos/2/edit
代码:
$(function() {
var margin = parseInt(jQuery('#content').css('margin-top'), 10);
$('#scroll-down').click(function() {
$('#content').animate({
'margin-top': '+=50'
}, 1000);
return margin;
});
if (margin > 0) {
$('#scroll-up').click(function() {
$('#content').animate({
'margin-top': '-=50'
}, 1000);
});
}
});