how to loop a video in html
how do i loop a video in html
using this code, can someone tell me what i need to add to make it loop
<embed src="man.mov" width=开发者_JS百科"320" height="320"> </embed>
Loop attribute needs to be set to true. And attribute values have to be put into "".
<embed src="man.mov" width="320" height="320" loop="true"> </embed>
< SRC="../graphics/sounds/helloo.wav" LOOP=TRUE HEIGHT=60 WIDTH=144>
try HTML5 video tag it will provide you all facilities you can easily handle all operation on you video player
You can use following to loop the video.
<embed src="man.mov" width="320" height="320" loop=true> </embed>
It is simple property loop, default is false.
You can loop youtube videos by adding &loop=1
to the end of the src url.
精彩评论