ILYC: Difference between revisions
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8"> | |||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
<title>Camera Stream (720p)</title> | |||
<style> | |||
body { | |||
background-color: #111; | |||
display: flex; | |||
justify-content: center; | |||
align-items: center; | |||
height: 100vh; | |||
margin: 0; | |||
font-family: sans-serif; | |||
} | |||
/* 720p Container Blueprint */ | |||
.stream-container { | |||
width: 100%; | |||
max-width: 1280px; /* Limits width to 720p horizontal */ | |||
aspect-ratio: 16 / 9; /* Enforces 720p aspect ratio */ | |||
box-shadow: 0 10px 30px rgba(0,0,0,0.5); | |||
background-color: #000; | |||
border-radius: 8px; | |||
overflow: hidden; | |||
} | |||
.stream-container iframe { | |||
width: 100%; | |||
height: 100%; | |||
border: none; | |||
display: block; | |||
} | |||
</style> | |||
</head> | |||
<body> | |||
<div class="stream-container"> | |||
<iframe | |||
src="https://ilyc.vi0.io/webrtc.html?src=ILYC-Clubhouse-West-Mid-Rez&autoplay=true&mute=true" | |||
allow="autoplay; fullscreen" | |||
allowfullscreen> | |||
</iframe> | |||
</div> | |||
</body> | |||
</html> | |||
<html> | <html> | ||
<div style=" | <div style=" | ||
Revision as of 18:15, 29 May 2026
<!DOCTYPE html>