Discussion Forums  >  Uncategorized

Replies: 1    Views: 227

ichigo
I hate code!
Profile
Posts: 74
Reg: Jul 27, 2011
London
740
07/30/11 04:17 PM (14 years ago)

video tagging, and screen...`

Hey guys, working on a little test app, Have made a screen with custom HTML and an embed video tag... source as follows <!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/loose.dtd> <html> <head> <title></title> <meta content=text/html; charset=UTF-8 http-equiv=Content-Type /> <meta content=width=device-width; initial-scale=1.0; maximum-scale=2.0; user-scalable=1; name=viewport /> <style type=text/css> html{background-color:transparent;height:100%;width:100%;} body{background-color:transparent;font-size:11pt;font-family:helvetica;} img{border:0px;} </style> </head> <body> <p> <embed src=sampleVideo.mov></embed></p> </body> </html> How can we make this look nicer? can we embed the video behind a full screen picture, or button to press play... also should we be using a regular HTML formatted page, or should we use a mobile optimised page? as always your help is much needed and appreciated ^_^
 
ichigo
I hate code!
Profile
Posts: 74
Reg: Jul 27, 2011
London
740
like
08/01/11 11:08 AM (14 years ago)
ok update :) IU found a way to make the screen nicer... simply giving it a black background and specifying a size of the video player makes it look OK :-) <!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/loose.dtd> <html> <head> <title></title> <meta content=text/html; charset=UTF-8 http-equiv=Content-Type /> <meta content=width=480px; initial-scale=1.0; maximum-scale=2.0; user-scalable=1; name=viewport /> <style type=text/css> html{background-color:#000000;height:100%;width:100%;} body{background-color:transparent;font-size:11pt;font-family:helvetica;} img{border:0px;} </style> </head> <body> <p> <embed embed= height=320 src=sampleVideo.mov width=480></embed></p> </body> </html>
 

Login + Screen Name Required to Post

pointerLogin to participate so you can start earning points. Once you're logged in (and have a screen name entered in your profile), you can subscribe to topics, follow users, and start learning how to make apps like the pros.