如何更改图像的宽度,在平滑滚动时有限制。
现在,图像宽度40vw
希望在向下滚动时减小到30vw
,一旦向上滚动就将当前宽度增大到40vw
效果需要发展 Reference(向下滚动并查看徽标的平滑度)
JS
$(window).on("scroll", function() {
// Dynamic variables - That do change while scrolling
var yPos = $(this).scrollTop(); // Get the scroll Y-position
if (yPos >= 0 && yPos <= 50) {
himg.css({
width: ?;
});
}
});
TIA