57 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en-US">
 | |
|    <head>
 | |
|       <meta charset="utf-8">
 | |
|       <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
|       <link rel="shortcut icon" href="./data/favicon.ico">
 | |
|       <link rel="icon" sizes="192x192" href="./data/icon.png">
 | |
|       <title>Webcam des MSV Bühl-Moos e.V.</title>
 | |
|       <link rel="stylesheet" href="./css/w3.css">
 | |
|       <link rel="stylesheet" href="./css/custom.css">
 | |
|       <style>
 | |
|         body {
 | |
|           background-image: url('./data/background.avif');
 | |
|           background-repeat: no-repeat;
 | |
|           background-attachment: fixed;
 | |
|           background-size: cover;
 | |
|         }
 | |
|     </style>
 | |
|    </head>
 | |
|    <body class="w3-animate-zoom">
 | |
|       <div class="w3-container w3-content w3-center">
 | |
|          <a style="text-decoration: none" href="https://msv-buehl-moos.de/" rel="noopener noreferrer"><h1 class="w3-text-white titletext">MODELLSPORTVEREIN BÜHL-MOOS E.V.</h1></a>
 | |
| 
 | |
|          <p class="w3-text-white"><i>Live Webcam vom Flugplatz in Moos</i></p>
 | |
| 
 | |
|          <div class="w3-panel w3-card-4 w3-white w3-padding w3-center current_webcam_image_box">
 | |
|             <h3 class="w3-container w3-left cameratext">Blick auf die Piste</h3>
 | |
|             <img class="current_webcam_image" src="data/camera/msvcamN.avif" class="w3-center" style="width:100%;visibility:visible" alt="Bild der Webcam mit Blick auf die Piste">
 | |
|             <div class="camera_offline_text" style="visibility:hidden">Die Webcam ist auf Grund einer Störung oder Wartung offline.</div>
 | |
|             <div class="camera_sleep_text" style="visibility:hidden">Die Webcam ist im Ruhemodus bis 7 Uhr.</div>
 | |
|          </div>
 | |
| 
 | |
|          <div class="w3-panel w3-card-4 w3-white w3-padding w3-center current_webcam_image_box">
 | |
|             <h3 class="w3-container w3-left cameratext">Blick nach Süden</h3>
 | |
|             <img class="current_webcam_image" src="data/camera/msvcamS.avif" class="w3-center" style="width:100%;visibility:visible" alt="Bild der Webcam mit Blick nach Süden">
 | |
|             <div class="camera_offline_text" style="visibility:hidden">Die Webcam ist auf Grund einer Störung oder Wartung offline.</div>
 | |
|             <div class="camera_sleep_text" style="visibility:hidden">Die Webcam ist im Ruhemodus bis 7 Uhr.</div>
 | |
|          </div>
 | |
| 
 | |
|          <div class="w3-panel w3-card-4 w3-white w3-padding w3-center">
 | |
|             <a class="w3-button w3-light-blue" href="https://app.weathercloud.net/d5800570223#wind" target="_blank" rel="noopener noreferrer"><h6>Zur Wetterstation</h6></a>
 | |
|          </div>
 | |
| 
 | |
|       </div>
 | |
|       <div class="w3-container w3-content w3-center" style="max-width:300px;">
 | |
|          <div class="w3-panel w3-card w3-dark-gray">
 | |
|             <div class="w3-center-align w3-text-black infobox">
 | |
|                   <a style="text-decoration: none" href="mailto:pressewart@msv-buehl-moos.de?subject=MSV%20Webcam"><h6>pressewart@msv-buehl-moos.de</h6></a>
 | |
|                   <p>Last update: 2025/08/15<p>
 | |
|                   <a style="text-decoration: none" href="https://git.mosad.xyz/localhorst/msv-webcam-frontend" target="_blank" rel="noopener noreferrer"><h6>View code in GIT</h6></a>
 | |
|             </div>
 | |
|          </div>
 | |
|       </div>
 | |
|       <script src="js/webcam.js"></script>
 | |
|    </body>
 | |
| </html>
 |