AvocadoAmber/AvocadoEdition_Light/bgm.php

22 lines
507 B
PHP
Raw Normal View History

2024-09-19 20:36:07 +09:00
<?php
include_once ('./_common.php');
if ($action == "play") {
?>
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
</head>
<body>
<iframe id="ytplayer" type="text/html" width="640" height="360"
src="https://www.youtube.com/embed?listType=playlist&list=<?= $config['cf_bgm'] ?>&autoplay=1&disablekb=1&loop=1&playsinline=1&rel=0&origin=<?= G5_URL ?>"
frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</body>
</html>
<?php } ?>