![]() |
mobile video linking discussion
what method do you use to link to video files? (regular vs html5)
Code:
<a href="video.m4v"><img src="thumb.jpg"></a> Code:
<video src="video.m4v" poster="thumb.jpg" controls></video> |
Most are using the <a> tag method as more phones will support it.
|
you are right
|
I haven't done anything with HTML5 yet, but have been thinking of doing a mobile tour with HTML5 tags for testing purposes.
For now, I use the <a> because it's just more supported at this point. |
Quote:
|
The regular way.
|
Depends on the landing location or just do the php switch..as iphone is the only one that really does html5
<?php if ($iphone){ echo '<video src="video.m4v" poster="thumb.jpg" controls></video>'; }else{ echo '<a href="video.m4v"><img src="thumb.jpg"></a>'; } ?> |
Just use <a> tag man, html5 is not ready yet. Give it another year or two.
|
All times are GMT -7. The time now is 08:52 AM. |
Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123