我为我的问题创造了一个小提琴:
$('#move').click(function (e) {
e.preventDefault();
$(this).not('.up').animate({
bottom: '50%'
},1000,function () {
$(this).addClass('up');
});
$('.up').animate({
bottom: '0%'
},function () {
$(this).removeClass('up');
});
});
Firefox中存在一个错误(我的版本:19.0.2).
单击红色按钮时,它会向右跳转(距离恰好是滚动条的宽度).
当它在右边并且你调整窗口(或小提琴框架)的大小时它会跳回来.
最佳答案
原文链接:https://www.f2er.com/css/427458.html