是否可以自動播放網站中的嵌入視頻?嘗試了不同的解決方案以使其在 vue.js 上作業,但它不會。即使在鏈接中添加 autoplay=1 也不起作用。我正在使用來自 youtube 的 iframe 代碼,我將在下面提供。
<iframe width="1060" height="615" src="[Link]?autoplay=1controls=0" title="Youtube Video" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
uj5u.com熱心網友回復:
使用 youtube iframe(嵌入式)自動播放只有在您將聲音靜音時才有效!
所以
<iframe width="1060" height="615" src="https://www.youtube.com/embed/L_gGKD8UNKA?autoplay=1&mute=1" title="Youtube Video" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
通過mute=1在autoplay=1它自動啟動視頻后添加
這是一個codepen.io鏈接!
轉載請註明出處,本文鏈接:https://www.uj5u.com/yidong/385869.html
