image_server/frontend.html
2026-03-09 08:51:27 +00:00

29 lines
942 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Random Image</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; overflow: hidden; background: #1a1a1a; }
img { display: block; max-width: 100%; max-height: 100%; margin: auto; cursor: pointer; }
</style>
</head>
<body>
<img id="random-img" src="/random" alt="Random image">
<script>
function loadNewImage() {
document.getElementById('random-img').src = '/random?' + Date.now();
}
document.getElementById('random-img').addEventListener('click', loadNewImage);
document.addEventListener('keydown', function(e) {
if (e.code === 'Space') {
e.preventDefault();
loadNewImage();
}
});
</script>
</body>
</html>