mirror of
https://github.com/Rezmason/matrix.git
synced 2026-04-14 12:29:30 -07:00
34 lines
836 B
HTML
34 lines
836 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Matrix digital rain</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" /></meta>
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /></meta>
|
|
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0, viewport-fit=cover" />
|
|
<style>
|
|
@supports (padding-top: env(safe-area-inset-top)) {
|
|
body {
|
|
padding: 0;
|
|
height: calc(100% + env(safe-area-inset-top));
|
|
}
|
|
}
|
|
body {
|
|
background: black;
|
|
overflow: hidden;
|
|
margin: 0;
|
|
|
|
font-family: monospace;
|
|
font-size: 2em;
|
|
text-align: center;
|
|
}
|
|
|
|
canvas {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body><script type="module" src="js/main.js"></script></body>
|
|
</html>
|