Photo booth

This commit is contained in:
2026-01-31 18:27:19 +01:00
parent 2d2fc24d71
commit ee97b8faab
8 changed files with 258 additions and 0 deletions

19
photo-booth/index.html Normal file
View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8" />
<title>Photo booth</title>
<link rel="stylesheet" href="style.css"/>
<script type="text/javascript" src="config.js"></script>
<script type="text/javascript" src="scripts/jquery-3.6.1.min.js"></script>
<script type="text/javascript" src="scripts/script.js"></script>
</head>
<body>
<video id="video" width="1920" height="1080" autoplay></video>
<div id="canvas-container">
<canvas id="canvas" width="3840" height="2160"></canvas>
</div>
<div id="flash"></div>
<div id="countdown">3</div>
</body>
</html>