2017-04-17 77 views
0

如何使用javascript/jquery或屬性HTML5禁用iframe中的自動播放功能,我禁用了iframe中的自動播放功能。在iframe中禁用了html5或javascript的自動播放功能

代碼:

<div id="vds" class="embed-responsive embed-responsive-16by9" style="margin-top: -100px;"> 
     <iframe class="embed-responsive-item" {% if profil.pageAccueil %}{%if profil.pageAccueil.video!=""%}src="{{profil.pageAccueil.video}}"{%else%} {{pageAccueil.video}} {%endif%}{%endif%}></iframe> 
    </div> 
+0

你能告訴你的代碼?請閱讀http://stackoverflow.com/help/mcve – lxx

+0

我編輯我的問題,我讓我的代碼 –

回答

0

更改

<div id="vds" class="embed-responsive embed-responsive-16by9" style="margin-top: -100px;"> 
<iframe class="embed-responsive-item" {% if profil.pageAccueil %}{%if profil.pageAccueil.video!=""%}src="{{profil.pageAccueil.video}}"{%else%} {{pageAccueil.video}} {%endif%}{%endif%}></iframe> 
</div> 

<div id="vds" class="embed-responsive embed-responsive-16by9" style="margin-top: -100px;"> 
     <video class="class="embed-responsive-item"" width="600" height="400"> 
      <source {% if profil.pageAccueil %}{%if profil.pageAccueil.video!=""%}src="{{profil.pageAccueil.video}}"{%else%} {{pageAccueil.video}} {%endif%}{%endif%}> type="video/mp4"> 
     </video> 
    </div> 
+0

,但我invoquer數據庫中的視頻與格式mp4 –

+0

請幫我.. –

+0

嘗試使用視頻標記,而不是iframe 。 – vlk

相關問題