Fixed Header when scrolling

Developer
Size
4,203 Kb
Views
40,480

How do I make an fixed header when scrolling?

What is a fixed header when scrolling? How do you make a fixed header when scrolling? This script and codes were developed by Juan Gallardo on 18 August 2022, Thursday.

Fixed Header when scrolling Previews

Fixed Header when scrolling - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Fixed Header when scrolling</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <header> <div class="header-banner"> <!-- <a href="/" class="logo"></a> <h1>Page Title</h1> --> </div> <nav> <ul> <li><a href="/link1">Link1</a></li> <li><a href="/link2">Link2</a></li> <li><a href="/link3">Link3</a></li> <ul> </nav>
</header>
<!-- For demo only -->
<section class="content"> <article> <p>Wolf vinyl hella, jean shorts disrupt skateboard master cleanse hashtag iPhone. Pop-up bicycle rights Brooklyn iPhone Helvetica kitsch Godard, XOXO blog aesthetic beard quinoa. Fixie kale chips PBR&B twee, YOLO raw denim before they sold out photo booth bespoke seitan food truck. Ethical chia before they sold out, trust fund viral ennui you probably haven't heard of them cred bitters mixtape semiotics deep v jean shorts pork belly occupy shabby chic sriracha ethnic normcore bicycle rights single-origin coffee slow-carb jean shorts. Twee ethnic mumblecore, Carles banh mi slow-carb pour-over organic. Ethical tofu narwhal, hoodie viral ennui tousled paleo. Butcher chia cray iPhone keytar, sustainable Cosby sweater literally try-hard put a bird on it photo booth ethical street art literally semiotics.</p> <img src="http://placehold.it/660x150"> <p>Twee 8-bit Blue Bottle, wolf tattooed distillery retro dreamcatcher put a bird on it letterpress asymmetrical actually Austin crucifix cred. Selfies ethical butcher vegan, umami bitters literally wolf seitan +1 Intelligentsia Pitchfork. Godard mixtape pork belly Pitchfork, fap food truck wolf banh mi post-ironic. Narwhal letterpress Etsy direct trade irony pour-over. Cosby sweater literally Vice DIY butcher selvage shabby chic, XOXO hashtag letterpress single-origin coffee. Artisan Portland disrupt swag small batch chambray, Neutra bespoke Wes Anderson tofu VHS ennui. Cosby sweater letterpress 90's shabby chic cornhole, literally YOLO sartorial bitters Blue Bottle cardigan chambray asymmetrical.</p> <p>Fixie gluten-free sriracha flannel, selfies chambray direct trade. Authentic mixtape semiotics deep v jean shorts pork belly occupy shabby chic sriracha. Tousled Williamsburg fanny pack High Life shabby chic Cosby sweater, gastropub organic cornhole post-ironic hella drinking vinegar cliche wolf pork belly. Wolf selvage cornhole church-key, ethnic raw denim chillwave authentic asymmetrical Austin synth. Single-origin coffee iPhone Carles, Godard synth chia photo booth fap mustache authentic pickled direct trade. Literally Vice Echo Park, trust fund viral ennui you probably haven't heard of them cred biodiesel lomo scenester gastropub chia keffiyeh Intelligentsia. Blue Bottle blog asymmetrical, pickled XOXO sustainable twee seitan cornhole 90's.</p> <p>Flexitarian bitters cardigan tofu tattooed, Kickstarter Thundercats umami hella raw denim mumblecore stumptown Godard trust fund. Pop-up organic iPhone, Godard actually vegan fanny pack Intelligentsia sartorial. Chambray Echo Park you probably haven't heard of them, food truck Wes Anderson Brooklyn brunch. Scenester Austin street art, sartorial sriracha letterpress hashtag. Wayfarers vinyl single-origin coffee, fashion axe pork belly hoodie polaroid mumblecore street art Truffaut. Readymade ethical Carles American Apparel fanny pack twee. Normcore Etsy squid, farm-to-table XOXO forage selfies distillery photo booth Tonx.</p> <p>Mlkshk flexitarian ethical, narwhal forage bespoke artisan hella plaid vinyl try-hard Tonx actually keytar. McSweeney's chambray forage next level, mixtape Austin Portland Odd Future ethical seitan. Gluten-free roof party locavore, pop-up cornhole chambray mlkshk bitters McSweeney's Kickstarter bespoke. YOLO cred pop-up chambray PBR&B. Kitsch mixtape DIY skateboard leggings, YOLO ennui chillwave dreamcatcher put a bird on it. Pug artisan PBR&B PBR dreamcatcher, Marfa Etsy mixtape mustache messenger bag Vice. Plaid lomo pour-over post-ironic, synth disrupt beard Truffaut church-key Tumblr narwhal Bushwick cred slow-carb tofu.</p> <p>Pitchfork disrupt Vice fixie sriracha Blue Bottle. Carles gastropub skateboard Schlitz, Truffaut semiotics PBR fanny pack. Truffaut biodiesel aesthetic, skateboard Etsy distillery blog. Craft beer mumblecore bitters, Tonx fixie viral fingerstache Bushwick occupy. DIY tofu pug lo-fi, street art flexitarian Truffaut. 90's banjo lo-fi master cleanse selvage Tonx, narwhal tote bag. Helvetica before they sold out put a bird on it slow-carb normcore lo-fi.</p> </article>
</section> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Fixed Header when scrolling - Script Codes CSS Codes

/*
Height must be added to JS scroll point
header = header-banner + nav
*/
header { height:360px; /* Modify height*/ z-index:10;
}
nav { width:100%; height:60px; /* Modify height*/ background: #292f36; /* Modify color*/ postion:fixed; z-index:10;
}
.fixed-header { position: fixed; top:0; left:0; width: 100%;
}
/* demo */
.header-banner { background-color: #333; background-image: url('http://37.media.tumblr.com/8b4969985e84b2aa1ac8d3449475f1af/tumblr_n3iftvUesn1snvqtdo1_1280.jpg'); background-position: center -240px; background-repeat: no-repeat; width: 100%; height: 300px;
}
nav ul { list-style-type: none; margin: 0 auto; padding-left:0; text-align:right; width: 960px; max-width: 100%;
}
nav ul li { display: inline-block; line-height: 60px; margin-left: 10px;
}
nav ul li a { color: #a9abae; text-decoration: none;
}
.content { padding-top: 60px; padding-left: 10px; padding-right: 10px;
}
/*
header .logo { background-color: transparent; background-image: url('http://www.example/com/img/image.png'); background-position: center top; background-repeat: no-repeat; position: absolute; top: ; height: ; width: ;
}
header h1 { color: #fff; position: absolute; top: ; left: ;
}
*/
.content{ width: 960px; max-width: 100%; margin:0 auto; }
article { float: left; width: 720px; max-width: 100%; }
article p:first-of-type { margin-top: 0; }
article img { max-width: 100%; }
body { color: #292f36; font-family: helvetica; line-height: 1.6;
}
/* resets */
body { margin:0px; padding:0px; }

Fixed Header when scrolling - Script Codes JS Codes

// Must include jQuery
$(window).scroll(function(){ if ($(window).scrollTop() >= 300) { $('nav').addClass('fixed-header'); } else { $('nav').removeClass('fixed-header'); }
});
/* scrollTop() >= 300 Should be equal the the height of the header Make equal to header-banner to be a smoother transition that looks like it is sticking as the top of page touches it. */
Fixed Header when scrolling - Script Codes
Fixed Header when scrolling - Script Codes
Home Page Home
Developer Juan Gallardo
Username JGallardo
Uploaded August 18, 2022
Rating 3
Size 4,203 Kb
Views 40,480
Do you need developer help for Fixed Header when scrolling?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Juan Gallardo (JGallardo) Script Codes
Create amazing blog posts with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!