-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbgm.html
30 lines (28 loc) · 1.21 KB
/
bgm.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/bgm.css">
<meta http-equiv="imagetoolbar" content="no"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta http-equiv="Title" content="bgm"/>
<meta http-equiv="Author" content="윤준석"/>
<title>BGM</title>
</head>
<body style="overflow-x: hidden; overflow-y: hidden;"> <!-- 종 횡 스크롤 방지.-->
<!-- 오디오 자동재생(크롬에선 미작동) -->
<audio id="audioContainer" autoplay loop>
<source id="audioSource" src="./bgm/kart_bgm.m4a" /> 오디오 포맷이 지원되지 않는 브라우져 입니다.
</audio>
<!-- 오디오를 제어하는 버튼 폼 -->
<form>
<div class="js-onOffWrap">
<button id="buttonbgm" class="js-playBtn" location.reload();>BGM 켜기 🎶</button>
<button id="buttonbgm" class="js-stopBtn" type="button">BGM 끄기 🔇</button>
</div>
</form> <!-- audio play 끝-->
<h2>좌측 BGM 스위치를 눌러 게임 배경음을 켜고 끌 수 있습니다.</h2>
<script src="./js/music.js"></script>
</body>
</html>