normansu Posted April 21, 2012 Share Posted April 21, 2012 hey dudes, I am making a new webapp and wanted to share with all of you here, but i dont know if i can do it with the guideline in NEOWIN. Any way, I am also interested in this topic question: What is the most useful feature in HTML5 standard as you suppose? * Vedio&Audio Tags * tons of new input types * websocket * offline sets * You name it in reply~ above 5 were almost all the famous HTML5 feature are in use, and they are quite mature. as far as i know, offline sets are most widely used in a lot webs but ... few are totally offline supported Link to comment https://www.neowin.net/forum/topic/1071827-what-is-the-most-useful-feature-in-html5-standard/ Share on other sites More sharing options...
0 c3ntury Posted April 21, 2012 Share Posted April 21, 2012 Canvas :) Link to comment https://www.neowin.net/forum/topic/1071827-what-is-the-most-useful-feature-in-html5-standard/#findComment-594814199 Share on other sites More sharing options...
0 normansu Posted April 21, 2012 Author Share Posted April 21, 2012 Canvas :) oh yes, canvas, but it is quite complicated Link to comment https://www.neowin.net/forum/topic/1071827-what-is-the-most-useful-feature-in-html5-standard/#findComment-594814261 Share on other sites More sharing options...
0 MikeChipshop Member Posted April 21, 2012 Member Share Posted April 21, 2012 The fact we now have a truly semantic way to describe layouts using <article>, <header>, <footer etc. Granted, maybe not as initially exciting as <canvas> etc but none the less we'll be seeing this in everything from complicated web apps to single page landing sites. Ambroos 1 Share Link to comment https://www.neowin.net/forum/topic/1071827-what-is-the-most-useful-feature-in-html5-standard/#findComment-594814281 Share on other sites More sharing options...
0 normansu Posted April 21, 2012 Author Share Posted April 21, 2012 The fact we now have a truly semantic way to describe layouts using <article>, <header>, <footer etc. Granted, maybe not as initially exciting as <canvas> etc but none the less we'll be seeing this in everything from complicated web apps to single page landing sites. for me and my team, we gave up using <canvas>this time Link to comment https://www.neowin.net/forum/topic/1071827-what-is-the-most-useful-feature-in-html5-standard/#findComment-594814307 Share on other sites More sharing options...
0 threetonesun Posted April 22, 2012 Share Posted April 22, 2012 Well, I still think HTML should only be used for markup, so the better semantic page descriptions is nice. Everything else is... still fairly clunky. Link to comment https://www.neowin.net/forum/topic/1071827-what-is-the-most-useful-feature-in-html5-standard/#findComment-594816351 Share on other sites More sharing options...
0 winlonghorn Posted April 24, 2012 Share Posted April 24, 2012 for me and my team, we gave up using <canvas>this time Why give up using <canvas>? It isn't all that difficult to understand really. Here is a sample I grabbed from another site: <!DOCTYPE HTML><html> <head> <style> body { margin: 0px; padding: 0px; } #myCanvas { border: 1px solid #9C9898; } </style> <script> window.onload = function() { var canvas = document.getElementById("myCanvas"); var context = canvas.getContext("2d"); context.moveTo(100, 150); context.lineTo(450, 50); context.stroke(); }; </script> </head> <body> <canvas id="myCanvas" width="578" height="200"></canvas> </body></html>[/CODE] Source: http://www.html5canvastutorials.com/tutorials/html5-canvas-lines/ All you do is define the canvas tag, give it an id, and reference that id in javascript to work with (get the drawing context and draw) the canvas. Link to comment https://www.neowin.net/forum/topic/1071827-what-is-the-most-useful-feature-in-html5-standard/#findComment-594820333 Share on other sites More sharing options...
0 remixedcat Posted April 24, 2012 Share Posted April 24, 2012 killing adobe flash!!! Link to comment https://www.neowin.net/forum/topic/1071827-what-is-the-most-useful-feature-in-html5-standard/#findComment-594821667 Share on other sites More sharing options...
0 Ambroos Posted April 24, 2012 Share Posted April 24, 2012 killing adobe flash!!! That won't happen anytime soon. No matter what browser you're using, Flash is still heaps and heaps faster than HTML5 for almost anything (aside video). And at least one Flash file works exactly the same in all browsers. Link to comment https://www.neowin.net/forum/topic/1071827-what-is-the-most-useful-feature-in-html5-standard/#findComment-594821673 Share on other sites More sharing options...
0 -Alex- Posted April 26, 2012 Share Posted April 26, 2012 I like this thread (Y) remixedcat 1 Share Link to comment https://www.neowin.net/forum/topic/1071827-what-is-the-most-useful-feature-in-html5-standard/#findComment-594824729 Share on other sites More sharing options...
0 seethru Posted April 26, 2012 Share Posted April 26, 2012 That won't happen anytime soon. No matter what browser you're using, Flash is still heaps and heaps faster than HTML5 for almost anything (aside video). And at least one Flash file works exactly the same in all browsers. This. Also, from a game dev point of view JavaScript (and therefore HTML5) is a pain in the ass to work with. I'd rather repeatedly punch myself in the nuts than write an entire game using JavaScript and the pseudo OOP programming it employs. JavaScript needs to be replaced with a truly OOP language. Flash, despite it's short comings, has AS3 which is miles ahead of JavaScript as a language. Link to comment https://www.neowin.net/forum/topic/1071827-what-is-the-most-useful-feature-in-html5-standard/#findComment-594825057 Share on other sites More sharing options...
0 Ryan Hoffman Posted April 26, 2012 Share Posted April 26, 2012 LocalStorage is great. It's particularly useful for html5 mobile app development. Link to comment https://www.neowin.net/forum/topic/1071827-what-is-the-most-useful-feature-in-html5-standard/#findComment-594825061 Share on other sites More sharing options...
0 remixedcat Posted April 26, 2012 Share Posted April 26, 2012 That won't happen anytime soon. No matter what browser you're using, Flash is still heaps and heaps faster than HTML5 for almost anything (aside video). And at least one Flash file works exactly the same in all browsers. Adobe Crash Player Link to comment https://www.neowin.net/forum/topic/1071827-what-is-the-most-useful-feature-in-html5-standard/#findComment-594826215 Share on other sites More sharing options...
0 _neutrino Veteran Posted April 26, 2012 Veteran Share Posted April 26, 2012 oh yes, canvas, but it is quite complicated I find it to be rather simple to use. Link to comment https://www.neowin.net/forum/topic/1071827-what-is-the-most-useful-feature-in-html5-standard/#findComment-594826227 Share on other sites More sharing options...
0 Stetson Posted April 26, 2012 Share Posted April 26, 2012 Websocket for me. It has allowed me to do things as web apps that before I could only do with native or Java apps. Link to comment https://www.neowin.net/forum/topic/1071827-what-is-the-most-useful-feature-in-html5-standard/#findComment-594826275 Share on other sites More sharing options...
0 Dapen Posted April 26, 2012 Share Posted April 26, 2012 The birth of HTML5 Boilerplate. It's given a sense of semantics to follow more so than ever IMO. Link to comment https://www.neowin.net/forum/topic/1071827-what-is-the-most-useful-feature-in-html5-standard/#findComment-594826301 Share on other sites More sharing options...
0 seta-san Posted April 26, 2012 Share Posted April 26, 2012 THE <HTML> tag. You'll get no where without it. Link to comment https://www.neowin.net/forum/topic/1071827-what-is-the-most-useful-feature-in-html5-standard/#findComment-594826319 Share on other sites More sharing options...
0 Boz Posted April 28, 2012 Share Posted April 28, 2012 That won't happen anytime soon. No matter what browser you're using, Flash is still heaps and heaps faster than HTML5 for almost anything (aside video). And at least one Flash file works exactly the same in all browsers. Video too now and especially in 3D and new features. But for me HTML5 best stuff is: 1. Canvas 2D / SVG support (hopefully we get Canvas 3D in the final spec) 2. Video tag 3. Web sockets 4. Local offline storage / Web SQL 6. WebRTC (following this closely) Link to comment https://www.neowin.net/forum/topic/1071827-what-is-the-most-useful-feature-in-html5-standard/#findComment-594830339 Share on other sites More sharing options...
Question
normansu
hey dudes, I am making a new webapp and wanted to share with all of you here, but i dont know if i can do it with the guideline in NEOWIN.
Any way, I am also interested in this topic question:
What is the most useful feature in HTML5 standard as you suppose?
* Vedio&Audio Tags
* tons of new input types
* websocket
* offline sets
* You name it in reply~
above 5 were almost all the famous HTML5 feature are in use, and they are quite mature.
as far as i know, offline sets are most widely used in a lot webs but ... few are totally offline supported
Link to comment
https://www.neowin.net/forum/topic/1071827-what-is-the-most-useful-feature-in-html5-standard/Share on other sites
17 answers to this question
Recommended Posts