37 lines
953 B
HTML
37 lines
953 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>handtracking</title>
|
|
<style>
|
|
body {
|
|
background-color: #1d1d1d;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: scroll;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
canvas {
|
|
padding: 0;
|
|
margin: 0;
|
|
border-color: #f00;
|
|
border-width: 1px;
|
|
}
|
|
</style>
|
|
<script src="../libraries/p5.min.js"></script>
|
|
<script src="../libraries/ml5.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/lil-gui@0.20"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<script src="sketch.js"></script>
|
|
<h1 style="color: white;" id="detector">No uwu detected</h1>
|
|
<img src='https://gcdn.thunderstore.io/live/repository/icons/qwq_cloud-Boykisser_uwu_Suit-1.1.2.png.256x256_q95.png'
|
|
style="display: none;" id='meme' />
|
|
<h2 id="debug"></h2>
|
|
</body>
|
|
|
|
</html> |