/******
 *  muted --静音播放属性,微信环境中可删除
 *  src  --资源地址
 *  poster --资源封面
 *  preload="auto" --是否自动播放
 *  webkit-playsinline="true" --ios10中设置可以让视频在小窗内播放,即不全屏播放
 *  playsinline="true" --IOS微信浏览器支持小窗内播放
 *  x-webkit-airplay="allow --使此视频支持ios的AirPlay功能
 *  x5-video-player-type="h5" --启用H5播放器,是wechat安卓版特性
 *  x5-video-player-fullscreen="true" --全屏设置,设置为 true 是防止横屏
 *  x5-video-orientation="portraint" --播放器方向,landscape横屏,portraint竖屏,默认值为竖屏
 ******/
<video muted 
  src="autoplay.mp4" 
  poster="images/poster.jpg" 
  autoplay 
  preload="auto"   
  webkit-playsinline="true"
  playsinline="true" 
  x-webkit-airplay="allow" 
  x5-video-player-type="h5" 
  x5-video-player-fullscreen="true">
  x5-video-orientation="portraint" />
</video>
Last Updated:
Contributors: pengrengui