Advertisement
orborbson

kamera_layout.html

Dec 18th, 2024
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.66 KB | Source Code | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Kamera</title>
  7.     <script>
  8.         function refreshImage() {
  9.             const image = document.getElementById('dynamicImage');
  10.             const currentTime = new Date().getTime();
  11.             // Dodajemy timestamp do URL, aby wymusić odświeżenie
  12.             image.src = 'cam1.jpg?t=' + currentTime;
  13.         }
  14.  
  15.         setInterval(refreshImage, 10000);
  16.     </script>
  17. </head>
  18. <body onload="refreshImage()">
  19.     <h1>Kamera</h1>
  20.     <img id="dynamicImage" src="cam1.jpg" alt="kamera">
  21. </body>
  22. </html>
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement