Hi,
I have a animation video (with a URL link) embedded in an Experience Builder web site home page. When I opened this web page, the video didn’t play automatically, and I will have to click the “play” button. Can anyone help me to know how to make this video playing automatically ? Thanks.
This is the experience builder web page:
https://experience.arcgis.com/experience/d179680b6f9f4dfcaefef39047bfd127/
This is the URL link of the video:
https://regionalplanning.co.delaware.oh.us/wp-content/uploads/sites/17/2024/04/Popden80to23crop.mp4
Da-Wei Liou
Solved! Go to Solution.
@Da-WeiLiou Use the following HTML code to embed instead, and you will get what you expect to see:
<video autoplay muted loop>
<source src="https://regionalplanning.co.delaware.oh.us/wp-content/uploads/sites/17/2024/04/Popden80to23crop.mp4">
</video>
Let me know if you encounter any other issues.
@Da-WeiLiou Use the following HTML code to embed instead, and you will get what you expect to see:
<video autoplay muted loop>
<source src="https://regionalplanning.co.delaware.oh.us/wp-content/uploads/sites/17/2024/04/Popden80to23crop.mp4">
</video>
Let me know if you encounter any other issues.
Thank you so much!
This is exactly what I need.
Thanks.
Da-Wei