Experience Builder embedded video doesn’t play automatically when the web page open

171
2
Jump to solution
4 weeks ago
Labels (2)
Da-WeiLiou
New Contributor III

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

0 Kudos
1 Solution

Accepted Solutions
TonghuiMing
Esri Regular Contributor

@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.

View solution in original post

0 Kudos
2 Replies
TonghuiMing
Esri Regular Contributor

@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.

0 Kudos
Da-WeiLiou
New Contributor III

Thank you so much!

This is exactly what I need.

Thanks.

Da-Wei