Continuing the discussion from Make a Background Video Play Once (No Loop):
Here is my site Read-Only: LINK
(how to share your site Read-Only link)
Continuing the discussion from Make a Background Video Play Once (No Loop):
Here is my site Read-Only: LINK
(how to share your site Read-Only link)
Hi @stevo2989 I come across same issue I have to solve and it is a simple task to do. I have add to WF “background video” element it’s id
hero-video than I have pointed to its first child that is <video>
element it self. This allowed me to remove attribute loop from <video>
element. Now bg video plays only once.
const heroVideo = document.getElementById('hero-video').children
heroVideo[0].removeAttribute("loop")