0
携帯電話用の私のウェブサイトのYouTubeのiframeのビデオに問題があるim。 YouTubeは自動再生動画を許可していないので、ウェブサイトのユーザーは曲をクリックし、一時停止をクリックしてから再生をクリックして曲を開始する必要があります。これを自動化するコードを追加することができますか? http://prntscr.com/an95lx2つのボタンを自動的にクリックしてください
<div class="buttons">
<i class="icon icon-to-start prev"></i>
<i class="icon icon-play toggle-play" ng-if="!player.loadingTrack && !player.isPlaying"></i>
<i class="icon icon-pause toggle-play" ng-if="!player.loadingTrack && player.isPlaying"></i>
<i class="icon icon-spin2 track-loading spin" ng-if="player.loadingTrack"></i>
<i class="icon icon-to-end next"></i>
</div>