soiz1 commited on
Commit
fd8416f
·
1 Parent(s): 1ad6f23

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +5 -4
index.html CHANGED
@@ -770,10 +770,10 @@ document.addEventListener('DOMContentLoaded', function() {
770
 
771
  <!-- プレビューセクション -->
772
  <div class="preview-section" id="preview-section">
773
- <h3>プレビュー</h3>
774
- <p>合成された音声をプレビューできます。再生ボタンをクリックして確認してください。</p>
775
- <button class="control-button" id="preview-button">▶</button>
776
- <span id="preview-time">00:00 / 00:00</span>
777
  </div>
778
  </div>
779
 
@@ -1116,6 +1116,7 @@ document.addEventListener('DOMContentLoaded', function() {
1116
  combineStatus.textContent = "音声の合成が完了しました";
1117
  enablePlayerControls();
1118
 
 
1119
  // 合成後に音量と再生速度を適用
1120
  applyVolume();
1121
  applyPlaybackRate();
 
770
 
771
  <!-- プレビューセクション -->
772
  <div class="preview-section" id="preview-section">
773
+ <h3 hidden>プレビュー</h3>
774
+ <p hidden>合成された音声をプレビューできます。再生ボタンをクリックして確認してください。</p>
775
+ <button class="control-button" id="preview-button" hidden>▶</button>
776
+ <span id="preview-time" hidden>00:00 / 00:00</span>
777
  </div>
778
  </div>
779
 
 
1116
  combineStatus.textContent = "音声の合成が完了しました";
1117
  enablePlayerControls();
1118
 
1119
+ previewSection.style.display = 'block';
1120
  // 合成後に音量と再生速度を適用
1121
  applyVolume();
1122
  applyPlaybackRate();