Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<html>
<head>
<script>
function checkandmove(){
newtop=fromtop+document.body.scrollTop;
theDiv.style.top=newtop;
}
function Init(){
fromtop=parseInt(theDiv.style.top); // just grab distance from top of div, set in style top
}
</script>
</head>
<body onLoad="Init();" onScroll="checkandmove();">
<div id="theDiv" style="position:absolute;left:150;top:50;width:50;height:50;background-color:yellow">
STAY!
</div>
</body>
</html>