1
0
Fork 0
mirror of https://gitlab.com/oloturia/fumcaso.git synced 2025-01-04 20:47:16 +01:00
fumcaso/show.html
2022-04-01 19:14:04 +02:00

17 lines
365 B
HTML

<html>
<head>
<title>Random Strip</title>
<script>
function reloadImage() {
var now = new Date();
var el = document.getElementById("image");
el.src = "file:///var/tmp/image.png?t=" + now;
setTimeout("reloadImage()",10000);
}
setTimeout("reloadImage()",10000);
</script>
</head>
<body>
<img id="image" src="file:///var/tmp/image.png" width=1500>
</body>
</html>