我有一个问题,我的问题是“animate”jquery函数需要运行。我的项目要求在滚动时标题被抽出,因为css的“高度”+“过渡”非常突然,我决定使用函数“animate”jquery,问题是它缩小了所有内容和我的“输入”经过很长时间收缩
$('document').ready(function() {
$(window).scroll(function()
{
if ($(this).scrollTop() > 19) {
$(".ui-autocomplete-input").animate({"height": "19px"},"fast");
$('#header-container').addClass("scale-header");
$('.top_menu').slideUp();
}
else if ($(this).scrollTop() < 19) {
$(".ui-autocomplete-input").animate({"height": "34px"},"fast");
$('#header-container').removeClass("scale-header");
$('.top_menu').slideDown();
}
});
});
我需要一个“slideUp”和“slideDown”18px到32px
谢谢!