analogue-tv-test-card/index.html
2026-06-01 20:48:02 -04:00

74 lines
2.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Testcard</title>
<link rel="stylesheet" href="style.css">
<style>
html, body {
margin: 0;
width: 100%;
height: 100%;
overflow: hidden;
background: black;
}
body {
position: relative;
}
img, svg {
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
object-fit: fill; /* Use contain if you want aspect ratio preserved */
}
svg {
pointer-events: none;
}
.hide-cursor {
cursor: none;
height: 200px;
width: 300px;
background-color: #ff6b6b;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-family: Arial, sans-serif;
margin: 20px 0;
}
</style>
</style>
</head>
<body>
<div class="hide-cursor">
<img src="testcard1.png" alt="Example SVG">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600" preserveAspectRatio="none">
<g id="text">
<text id="dateText" x="270" y="305" fill="white" dominant-baseline="middle" text-anchor="middle" font-family="VCR" font-size="30"></text>
<text id="timeText" x="535" y="305" fill="white" dominant-baseline="middle" text-anchor="middle" font-family="VCR" font-size="30"></text>
<text x="200" y="454" fill="black" dominant-baseline="middle" text-anchor="middle" font-family="VCR" font-size="35">C25</text>
<text x="299" y="454" fill="black" dominant-baseline="middle" text-anchor="middle" font-family="VCR" font-size="30">VELTRON</text>
<text x="382" y="454" fill="black" dominant-baseline="middle" text-anchor="middle" font-family="VCR" font-size="30">TV</text>
<text x="436" y="454" fill="white" dominant-baseline="middle" text-anchor="middle" font-family="VCR" font-size="28">480i</text>
<text x="533" y="454" fill="white" dominant-baseline="middle" text-anchor="middle" font-family="VCR" font-size="35">ON AIR</text>
<text x="400" y="486" fill="white" dominant-baseline="middle" text-anchor="middle" font-family="VCR" font-size="20">BROADCASTING OVER THE AIR ON CHANNEL 25</text>
<text x="406" y="525" fill="white" dominant-baseline="middle" text-anchor="middle" font-family="VCR" font-size="15">WWW.VELTRON.NET</text>
</g>
</svg>
</div>
<script src="clock.js"></script>
<audio autoplay loop>
<source src="testcard.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</body>
</html>