[ES6] Use Youtube Api,實作 youtube 影音

Upload Youtube

當我們上傳影音到 youtube 後,
一般串接影音作法,只要點擊介面上的嵌入影音
就會得到一串 iframe 的方式!
但是今天我們需要偵測用戶暫停或者 replay,甚至記載點擊數
以上種種客製化,就需要使用到 youtube提供的 API

程式碼

index.html
1
2
3
4
5
6
7
8
9
10
11
12
<div class="video">
<div id="video_Player"></div>
</div>

<!-- 下方這串最後被我移除,實作在Creative_video.js -->
<script>
/* This code loads the IFrame Player API code asynchronously. */
var tag = document.createElement('script');
tag.src = "https://www.youtube.com/iframe_api";
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
</script>
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×