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>
<title>blink</title>
<script type="text/javascript">
function blink(id) {
var seconds = 15;
self.x = self.x ? self.x : 0;
el = document.getElementById(id);
if (self.x++ < (seconds * 2)) {
el.style.visibility =
el.style.visibility == "visible" ?
"hidden" : "visible";
setTimeout("blink('" + id + "');", 500);
}
else el.style.visibility = "hidden";
}
</script>
</head>
<body onload="blink('msg');">
<div>static text</div>
<div id="msg">i blink for 15 seconds!</div>
<div>static text</div>
</body>
</html>