1

Using the following coding

<video width="100%" autoplay="autoplay">
<source src="movie.mp4" type="video/mp4" />
</video>

Is it possible to make the video stop playing after the first time, and to have the video fill the webpage area

I have no experience in using JQuery or JWplayer, so if the best option is using these languages and objects, please give as much help as possible

Dave Labal
  • 31
  • 2

1 Answers1

0

As far as making it play fullscreen, you can find more information here: fullscreen video tag. Setting the tag to autoplay should only make it play once. Adding the "loop" parameter would make it repeat.

Community
  • 1
  • 1
Arth Du
  • 807
  • 4
  • 6
  • When I use the following coding, it has no effect with or with out using 'loop' it still repeats – Dave Labal Jun 12 '13 at 20:06
  • Try moving the source into the video element as an attribute http://www.quackit.com/html_5/tags/html_video_tag.cfm – Arth Du Jun 12 '13 at 20:20
  • Thankyou that worked, Is it possible to make the video dissapear after it has been played once? – Dave Labal Jun 12 '13 at 20:33
  • Here's an example I found for doing that. http://stackoverflow.com/questions/2954595/html5-video-callbacks – Arth Du Jun 12 '13 at 20:42