Auto play video in Marketo landing pages

Anonymous
Not applicable

Auto play video in Marketo landing pages

Hi all,

Is there a way to set up a video so that it auto plays as soon as a contact lands on the page?

Thanks!
Caryl
Tags (1)
1 REPLY 1
Anonymous
Not applicable

Re: Auto play video in Marketo landing pages

It is quick and simple on a landing page in HTML5. It is the <video> autoplay Attribute. It goes within a HTML block page element.

It displays "Your browser does not support the video tag." if the browser deos not support HTML5.

<video controls autoplay>
  <source src="movie.mp4" type="video/mp4">
  Your browser does not support the video tag.
</video>

Source and more details: http://www.w3schools.com/tags/att_video_autoplay.asp