Hello Support:
I'm having trouble getting an iframe to autoplay once loaded. When I test on Vimeo's Embed test page it auto plays ok, but when I load the one in question from my canvas template, it sits waiting for the play button to be activated.
I moved away from actioning the original video stored locally, and reverted to using Vimeo within an iframe, so not sure if I should be keeping the video-wrap class and if this is messing with the code?
Here's the code I currently have for the embedded video section:
<section id="section-video" class="slider-element min-vh-100 dark">
<div class="slider-inner">
<div class="vertical-middle slider-element-fade">
<div class="container text-center">
<div class="inline-block animated infinite">[](https://vimeo.com/759746693?autoplay=1&loop=1&autopause=0)</div>
</div>
</div>
<div class="video-wrap">
<video id="hero-video" poster="video/Video_screengrab_HD.jpg" preload="auto" loop muted>
<!--<source src='video/MARKIT_24_BURROWS_MASTER_LR.mp4' type='video/mp4' />-->
</video>
<div class="video-overlay" style="background-color: rgba(0,0,0,0.2);"></div>
</div>
</div>
</section>