This is what I wrote and I wanna use this header in my website.
but when I scroll very slowly like one tick or something, image just stop shrink and come back to original size(250px, you need to run snippet in fullscreen mode).
and I don't know why, text below header immediately comes up when header image shrank.
I want the image to shrink even if there is only one scroll. how can I solve this?
$(window).on('scroll', function () {
if ($(this).scrollTop()) {
$('#header h1').addClass('scr');
} else {
$('#header h1').removeClass('scr');
}
});
#header {
position: sticky;
top: 0;
width: 100%;
}
#header h1 {
margin: 0px auto;
width: 250px;
padding: 50px 0;
text-align: center;
font-size: 2.25em;
font-weight: 800;
line-height: 1;
color: var(--color-000);
transition: .5s;
overflow-anchor: none;
}
#header h1 a {
text-decoration: none;
vertical-align: top;
color: var(--color-000);
}
#header h1 a img {
max-height: 250px;
transition: 0.5s;
}
#header h1.scr {
width: 48px;
}
#header h1.scr a img {
overflow-anchor: none;
max-height: 48px;
}
<head>
</head>
<body>
<script src="http://code.jquery.com/jquery-3.5.1.min.js"></script>
<header id="header">
<h1><a href="[##_blog_link_##]"><img src='https://images.unsplash.com/photo-1540542189638-bb1b775836fc?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwzMjM4NDZ8MHwxfHJhbmRvbXx8fHx8fHx8fDE2NjI3OTkzODM&ixlib=rb-1.2.1&q=80&w=400' alt=''></a></h1>
</header>
<h2>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
<br><br><br><br><br><br><br><br><br>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
<br><br><br><br><br><br><br><br><br>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</h2>
</body>