How To Create Website Header Fixed and Shrink while Scroll ?
SEO Help and Tips
How To Create Website Header Fixed and Shrink while Scroll ?
Here is the code example to create a website fixed and shrink header :
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
#header {
background-color: #f1f1f1;
padding: 50px 10px;
color: black;
text-align: center;
font-size: 90px;
font-weight: bold;
position: fixed;
top: 0;
width: 100%;
transition: 0.2s;
}
</style>
</head>
<body>
<div id="header">Header</div>
<div style="margin-top:200px;padding:15px 15px 2500px;font-size:30px">
<p><b>Test Header</b></p>
</div>
<script>
// When the user scrolls down 50px from the top of the document, resize the header's font size
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 50 || document.documentElement.scrollTop > 50) {
document.getElementById("header").style.fontSize = "30px";
} else {
document.getElementById("header").style.fontSize = "90px";
}
}
</script>
</body>
</html>
Comments
Post a Comment
Thanks for your Comments.