Recently I attended Microsoft HTML5 WebCamp where I had a chance to get insights on all new features HTML5 has to offer. Couple things to mention: - Canvas - a new HTMl5 feature that uses JavaScript to draw bitmap graphics on a web page. Simple approach (less JS coding) makes this interesting: empty space is treated as a painter canvas and a painter brush is replaced with JavaScript. - SVG (Scalable Vector Graphics) is another graphic tool widely publicized. It is not new, it has been around for ......
LocalStorage() is one of the new features of HTML5 that found widespread use among PC and phone developers. It can save up to 5MB of data locally, on a user device in a key-value database inside a web browser. Data can be retrieved only from a device where was permanently saved until it gets deleted by user or programmatically. To be able to take advantage of this and other HTML5 features, user needs to have a compatible browser. Currently, at the time I am writing this post, there is no browser ......
Everybody are raving about new HTML5, the latest changes old HTML went thru. What that means to us, how our work is going to be affected? Finally I found some time to explore the new changes. What HTML5 is bringing new? W3C site provides a good overview of new features HTML5 has to offer. http://www.w3schools.com/ht... One new, great feature is support for video and audio. They can be easy integrated into a page and additional software will not be required. Only drawback is that these ......