편집 요약 없음 태그: 수동 되돌리기 |
편집 요약 없음 |
||
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=" | <button id="playButton">음악 재생</button> | ||
<div id="playerContainer" style="display: none;"> | |||
<iframe id="yt-audio" width="200" height="150" | |||
</ | src="https://www.youtube-nocookie.com/embed/{{{video_id|8S5OGyl1ejo}}}?autoplay=1&loop=1&playlist={{{video_id|8S5OGyl1ejo}}}&mute=1" | ||
frameborder="0" allow="autoplay; encrypted-media"> | |||
</iframe> | |||
</div> | |||
</div> | </div> | ||
<script> | <script> | ||
document.addEventListener(" | document.getElementById("playButton").addEventListener("click", function() { | ||
var container = document.getElementById("playerContainer"); | |||
container.style.display = "block"; | |||
var iframe = document.getElementById("yt-audio"); | |||
iframe.src = iframe.src.replace("&mute=1", "&mute=0"); // 음소거 해제 | |||
}); | }); | ||
</script> | </script> | ||
</includeonly> | </includeonly> |