Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="pl">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Kamera</title>
- <script>
- function refreshImage() {
- const image = document.getElementById('dynamicImage');
- const currentTime = new Date().getTime();
- // Dodajemy timestamp do URL, aby wymusić odświeżenie
- image.src = 'cam1.jpg?t=' + currentTime;
- }
- setInterval(refreshImage, 10000);
- </script>
- </head>
- <body onload="refreshImage()">
- <h1>Kamera</h1>
- <img id="dynamicImage" src="cam1.jpg" alt="kamera">
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement