Xafam Posted December 22, 2011 Report Share Posted December 22, 2011 (edited) hey galera .. estou querendo colocar 3 videos numa pagina HTML , mas somente um dos videos q aparece ..alguém sabe oque estou fazendo de errado ou esquecendo !?http://dl.dropbox.com/u/41125458/testandoH...IDEO/video.html<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <style type="text/css"> .video1 { position: absolute; left: 0px; top: 0px; } .video2 { position: absolute; left: 480px; top: 0px; } .video3 { position: absolute; left: 880px; top: 0px; } </style> </head> <body> <video src="videos/video1.mp4" width="640" height="480" controls="controls" class=video1 /> <video src="videos/video2.mp4" width="640" height="480" controls="controls" class=video2 /> <video src="videos/video3.mp4" width="640" height="480" controls="controls" class=video3 /> </body> </html> Edited December 22, 2011 by Xafam Quote Link to comment Share on other sites More sharing options...
0 rickynavas Posted December 30, 2011 Report Share Posted December 30, 2011 No HTML5 a tag <video> precisa ser fechada, ela não é uma "void element" ou "self closing tag"então: <video src="videos/video1.mp4" width="640" height="480" controls="controls" class=video1 ></video> <video src="videos/video2.mp4" width="640" height="480" controls="controls" class=video2 ></video><video src="videos/video3.mp4" width="640" height="480" controls="controls" class=video3 ></video> Quote Link to comment Share on other sites More sharing options...
Question
Xafam
hey galera ..
estou querendo colocar 3 videos numa pagina HTML , mas somente um dos videos q aparece ..
alguém sabe oque estou fazendo de errado ou esquecendo !?
http://dl.dropbox.com/u/41125458/testandoH...IDEO/video.html
Edited by XafamLink to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.