2017年10月29日 星期日

網站影片的語法

<span style="font-family:Georgia, serif;"><iframe width="260" height="146" src="https://www.youtube.com/embed/Y9e52PAzsRY?hd=1&loop=1&autoplay=1&playlist=eahcvhcuxpo" frameborder="0" allowfullscreen></iframe></span>

關掉聲音音
http://twpeach.com/youtube-embeded/


<div id="muteYouTubeVideoPlayer"></div>

<script async src="https://www.youtube.com/iframe_api"></script>
<script>
 function onYouTubeIframeAPIReady() {
  var player;
  player = new YT.Player('muteYouTubeVideoPlayer', {
    videoId: 'Y9e52PAzsRY', // YouTube 影片ID
    width: 260,               // 播放器寬度 (px)
    height: 146,              // 播放器高度 (px)
    playerVars: {
      autoplay: 1,        // 在讀取時自動播放影片
      controls: 1,        // 在播放器顯示暫停/播放按鈕
      showinfo: 0,        // 隱藏影片標題
      modestbranding: 1,  // 隱藏YouTube Logo
      loop: 1,            // 影片循環播放
      fs: 1,              // 顯示全螢幕按鈕
      cc_load_policty: 0, // 隱藏字幕
      iv_load_policy: 3,  // 隱藏影片註解
      autohide: 0         // 播放影片時隱藏影片控制列
    },
    events: {
      onReady: function(e) {
        e.target.mute();
      }
    }
  });
 }

 // Written by @labnol 
</script>



沒有留言:

張貼留言