JSFiddle - React, Tailwind, and code Playground
HTML
<div id="myheader"><img src="http://ulrichbangert.de/heimat/2013-08-05_Wolfenbuettel_04.jpg"><br>Am Stadtmarkt in WolfenbĂĽttel</div>
<div id="content">Content</div>
CSS
#myheader {
position: fixed;
top: 0px;
text-align: center;
border: 2px solid black;
width: 100%
}
#content {
height: 1000px;
margin-top: 650px;
}
JavaScript
$(document).on("scroll", function () {
var pos = $(document).scrollTop();
console.log(pos);
if (pos < 600) {
$("#myheader").css("top", -pos + "px");
}
});