Is it time to start using HTML5? Someone has to start sometime but is now the time?
Is it possible to to use the new HTML5 tags and code in such a way as to degrade gracefully?
|
7
|
|||
|
|
|
|
Yes and no. There are HTML5 features that you can use today, but it would be wrong to say than you can use all of HTML5 today. When a given feature has two interoperable implementations among Firefox, Opera, IE8 and WebKit, it is OK to use that feature. If a feature hasn’t been implemented yet, you probably shouldn’t try to use it speculatively. Examples: The WHATWG copy of the spec has feature maturity annotations in the sidebar. Two things to be extra careful about:
And yes, HTML5 features are generally designed to be authorable in such a way that they degrade gracefully in legacy browsers. For example, new form controls degrade to |
||
|
|
|
|
|
||||
|
|
|
Just read an article on the HTML5 plans today. What really shocked me is the timescale. 2022 for completion!? I'll probably be retired by then! I don't have enough reputation yet to vote you down, but this is a commonly made mistake. It probably would have better for Hixie to just never have mentioned it. The 2022 date is the expected date to have two browsers consistently, interoperably implement 100% of HTML5. This is an extremely strict criteria. HTML4 hasn't yet reached this, and it's been out for a decade. HTML5 is expected to ship as a complete spec at the end of this year. |
||
|
|
|
|
See also: http://stackoverflow.com/questions/5629/any-reason-not-to-start-using-the-html-5-doctype Various features already work, e.g. <canvas>, but you'll need to add some JavaScript library for Internet Explorer. There are also libraries around the web that implement Web Forms 2.0, the forms chapter of HTML5. APIs such as postMessage will soon be in every browser (including Internet Explorer) and the same goes for localStorage/sessionStorage. Disclaimer: I'm a member of the WHATWG and the W3C HTML WG that jointly develop HTML5. |
|||
|
|
|
|
HTML5 is a collection of features with different status:
|
|||
|
|
|
|
Firefox 3.1 should support the <video> tag, and the next version of Safari will support that and the <audio> tag - but there will be no way to degrade gracefully (Edit: I've seen some Javascript libraries that allow for this). As always, we are bound to the browser support when designing, and it may still take a while (not to mention user upgrade paths...). |
|||
|
|
|
|
<video> implementations currently in browser builds don't do hardware acceleration. The videolan plugin playing a theora video totally wipes the floor with <video> performance-wise. This means that video is useless unless you have a fast computer. No getting by with older computers like you can with flash. If youtube for example was to start using only the video element now, they'd lose a lot of visitors. What this means is that for now, the video element is just something nifty to play with and far from a solution. Hopefully, by the time HTML5 is finished, the situation will be better. What would really help is if the videolan plugin supported an HTML5-compatible media api. Then, either through JS replacing the video element with an object element or through a browser setting, you could make <video> work with the plugin to get better performance. EVen now though, you could wrap the videolan plugin's current api to make it somewhat HTML5-compatible. (The videolan plugin needs to be more stable though too.) |
||
|
|
|
Looks like the new Chrome version will have a lot of HTML5 support... so I think we are getting much closer. Though it will probably remain like other recent improvements, where backwards compatibility for your site will still be needed for a long time to come and may negate and real improvement that HTML5 can give us. |
||
|
|
|
|
According to the WHATWG the HTML5 specification will be W3C Candidate Recommendation during 2012. I think is so much time, but is a sure date. I was using text-shadow when was part of CSS 2.1 working draft, and suddenly it was removed just like the Opera support. So I think that for production is better wait. |
||
|
|