-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
30 lines (30 loc) · 1.08 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>p5 visualizer</title>
<link rel="stylesheet" href="styles.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.9.0/p5.js"></script>
</head>
<body>
<div id="inputContainer">
<div id="fileControl">
<label for="fileInput" class="button">📄 ファイル</label>
<input type="file" id="fileInput" hidden>
</div>
<div class="slider-container">
<input type="range" id="timeSlider" min="0" max="100" value="0">
<input type="text" id="currentTimeInput" value="0" size="2">
<span>/</span>
<span id="maxTimeDisplay">---</span>
</div>
<button id="playButton" class="button">▶</button>
<div class="speed-control">
速度 <input type="text" id="playSpeed" value="1" size="2">
</div>
<button id="recordGifButton" class="button">GIF録画</button>
</div>
<div id="canvasContainer"></div>
<script src="sketch.js"></script>
</body>
</html>