我收到错误消息。
未捕获(承诺)的DOMException:play()失败,因为用户没有首先与文档进行交互。
..当尝试使用Chrome 66版在桌面上播放视频时。
我确实找到了一个广告,该广告开始使用以下HTML在网站上自动播放:
<video
title="Advertisement"
webkit-playsinline="true"
playsinline="true"
style="background-color: rgb(0, 0, 0); position: absolute; width: 640px; height: 360px;"
src="http://ds.serving-sys.com/BurstingRes/Site-2500/Type-16/1ff26f6a-aa27-4b30-a264-df2173c79623.mp4"
autoplay=""></video>
那么,绕过Chrome的V66的自动播放拦截真的那么容易,因为只需添加webkit-playsinline="true"
,playsinline="true"
和autoplay=""
属性的<video>
元素?这有负面影响吗?