편집 요약 없음 |
편집 요약 없음 |
||
1번째 줄: | 1번째 줄: | ||
<includeonly> | <includeonly> | ||
<div style="text-align: center; margin-top: 10px;"> | <div style="text-align: center; margin-top: 10px;"> | ||
<iframe id="yt-audio" width="560" height="315" | |||
src="https://www.youtube.com/embed/8S5OGyl1ejo?autoplay=1&mute=1&loop=1&playlist=8S5OGyl1ejo" | |||
frameborder="0" allow="autoplay; encrypted-media" allowfullscreen> | |||
</iframe> | |||
<br> | |||
<button onclick="unmuteVideo()" style="margin-top: 10px; padding: 10px; font-size: 16px;"> | |||
</ | 🔊 음소거 해제 | ||
</button> | |||
</div> | </div> | ||
<script> | <script> | ||
function unmuteVideo() { | |||
var | var iframe = document.getElementById("yt-audio"); | ||
var src = iframe.src; | |||
// 현재 URL에서 mute=1을 mute=0으로 변경 | |||
src = src.replace("mute=1", "mute=0"); | |||
} | iframe.src = src; | ||
} | |||
</script> | </script> | ||
</includeonly> | </includeonly> |