Nikki_Heights
Nikki_Heights

Reputation: 115

iframe video autoplay=false

I have a video on my site and it continues to autoplay. The code currently reads:

<div class="cc-video-wrapper">
<iframe src="links/Clean-Energy-Overview-Wind Facts.mp4" type="video/mp4" width="500" autoplay="false" height="322" frameborder="0" 
lowfullscreen mozallowfullscreen allowfullscreen>
</iframe>
</div>

So far, it continues to autoplay. I have tried autoplay="0", preload="false", autostart="false" and am running out of ideas. Has anyone experienced this problem before?

Upvotes: 0

Views: 11702

Answers (1)

Hexaquark
Hexaquark

Reputation: 612

You can use the video tag:

<video width="500" height="322" controls>
    <source src="links/Clean-Energy-Overview-Wind Facts.mp4" type="video/mp4">
</video>

Upvotes: 4

Related Questions