gpt4 book ai didi

javascript - 我的代码的平滑效果

转载 作者:太空宇宙 更新时间:2023-11-04 13:06:33 25 4
gpt4 key购买 nike

我有这个代码:

$(window).scroll(function () {
if( $(window).width() < 924) {
if ($(window).scrollTop() >= 100) {
$('#normal_menu').css({
height: '50px'
})

$('#logo img').css({
height: '50px',
width: '50px',
top: '0',
left: '15px'
});


} else {
$('#normal_menu').css({
height: '120px'
})

$('#logo img').css({
height: '80px',
width: '80px',
top: '20px',
left: '0px'
});
}
}
});

它工作正常。但现在我希望它顺利(轻松)。如何编辑此代码以使其顺利进行?

最佳答案

您应该将 transition 属性添加到所需的元素:

#normal_menu,#logo img {
transition: all .5s ease-in-out;
}

关于javascript - 我的代码的平滑效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25097304/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com