-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
56 lines (46 loc) · 1.73 KB
/
test.html
File metadata and controls
56 lines (46 loc) · 1.73 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>JavaScript stop Youtube Video</title>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script>
$(document).ready(function(){
$('.stop-video').click(function() {
$('.youtube-video').each(function() {
this.contentWindow.postMessage('{"event": "command", "func": "stopVideo", "args": ""}', '*');
});
});
});
</script>
</head>
<body>
<div>
<!-- -->
<h3 class="stop-video">헤이즈(Heize) - Jenga</h3>
<iframe class="youtube-video" src='https://www.youtube.com/embed/uw_HR9jIJww?enablejsapi=1' frameborder='0' allowfullscreen></iframe>
<!-- -->
<!-- -->
<h3 class="stop-video">쏜애플(THORNAPPLE) - 낯선 열대</h3>
<div>
<div>
<iframe class="youtube-video" src='https://www.youtube.com/embed/oQyvrsjMqng?enablejsapi=1' frameborder='0' allowfullscreen></iframe>
</div>
</div>
<!-- -->
<!-- -->
<h3 class="stop-video">Fromm(프롬) - Pieces of You and Me</h3>
<div>
<div>
<iframe class="youtube-video" src='https://www.youtube.com/embed/jx6GBqZMB14?enablejsapi=1' frameborder='0' allowfullscreen></iframe>
</div>
</div>
<!-- -->
</div>
</body>
</html>