soiz1 commited on
Commit
d0bd433
·
verified ·
1 Parent(s): dc4b242

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +6 -6
index.html CHANGED
@@ -69,9 +69,7 @@
69
  </head>
70
  <body>
71
  <h1>ラジオ体操動画プレイヤー<br>For Kushihara</h1>
72
-
73
- <video id="videoPlayer" src="v.mp4" controls></video>
74
-
75
  <div class="controls">
76
  <div class="control-group">
77
  <label for="speedRange">再生速度:</label>
@@ -94,12 +92,14 @@
94
  </div>
95
 
96
  <div class="control-group">
97
- <label for="videoSelect">動画の音量を選択(動画自体の音量を変更します):</label>
98
  <select id="videoSelect">
99
- <option value="v.mp4">通常音量</option>
100
- <option value="v-2.mp4">大音量(50dB大きい)</option>
101
  </select>
102
  </div>
 
 
103
  <script>
104
  const video = document.getElementById('videoPlayer');
105
  const videoSelect = document.getElementById('videoSelect');
 
69
  </head>
70
  <body>
71
  <h1>ラジオ体操動画プレイヤー<br>For Kushihara</h1>
72
+
 
 
73
  <div class="controls">
74
  <div class="control-group">
75
  <label for="speedRange">再生速度:</label>
 
92
  </div>
93
 
94
  <div class="control-group">
95
+ <label for="videoSelect">音量:</label>
96
  <select id="videoSelect">
97
+ <option value="v.mp4">小</option>
98
+ <option value="v-2.mp4">大(+50dB)</option>
99
  </select>
100
  </div>
101
+
102
+ <video id="videoPlayer" src="v.mp4" controls></video>
103
  <script>
104
  const video = document.getElementById('videoPlayer');
105
  const videoSelect = document.getElementById('videoSelect');