HTML5

TwitterFacebook
Get flash to fully experience Pearltrees
worker.onmessage = function (e){ // 由於在 worker.js 中使用了 postMessage() 並傳入 i 值 // 因此在這裡可以使用 event.data 來取得 i 值,並做出相關處理 // 例如: console.log(e.data); } http://blog.colorbase.tw/web-development/888

開始HTML5 – Web Workers « 色胚子部落

5lide: HTML5-based Slides Maker

http://blog.pamelafox.org/2010/08/5lide-html5-based-slides-maker.html At last week's GTUG campout , a 3-day long HTML5 hackathon, I signed up to be a TA for the weekend. That meant I spent most of my time wandering around answering random questions and helping developers debug their hacks. But, I can't be surrounded by a bunch of people hacking on cool shit and not join in myself -- it's just way too tempting.
http://net.tutsplus.com/tutorials/javascript-ajax/start-using-html5-websockets-today/

Start Using HTML5 WebSockets Today | Nettuts+

One of the coolest new features of HTML5 is WebSockets, which let us talk to the server without using AJAX requests. In this tutorial, we’ll review the process of running a WebSocket server in PHP, and then building a client to send and receive messages to it over the WebSocket protocol. What are WebSockets? WebSockets is a technique for two-way communication over one (TCP) socket, a type of PUSH technology. At the moment, it’s still being standardized by the W3C; however, the latest versions of Chrome and Safari have support for WebSockets. What do WebSockets Replace?

The scoped attribute | HTML5 Doctor

http://html5doctor.com/the-scoped-attribute/ The scoped attribute for the element allows you to include styles mid-document that targets a specific element and its children. Depending upon how you look at this, it’ll either be a godsend or a curse. Once you’ve reached the end of this article, I hope you can form your own opinion.
    A few concerns keep bobbing up now and then for Web developers, one of which relates to how to lay out a given design.

Six CSS Layout Features To Look Forward To - Smashing Coding

http://coding.smashingmagazine.com/2011/12/15/six-css-layout-features-to-look-forward-to/
var localMediaStream , recorder ; var record = function ( button ) { recorder = localMediaStream . record (); }; var stop = function ( button ) { localMediaStream . stop (); recorder . getRecordedData ( function ( blob ) { // Upload blob using XHR2. }); }; function enterFullscreen () { var elem = document . querySelector ( 'body' ); elem . onwebkitfullscreenchange = function ( e ) { console . log ( "Entered fullscreen!" ); elem . onwebkitfullscreenchange = onFullscreenExit ; }; elem . webkitRequestFullScreen ( Element . ALLOW_KEYBOARD_INPUT ); } document . webkitIsFullScreen ( bool ) document . webkitCurrentFullScreenElement ( DOMElement ) document . webkitFullScreenKeyboardInputAllowed ( bool ) document . webkitCancelFullScreen (); HTMLMediaElement . webkitSupportsFullscreen ( bool ) HTMLMediaElement . webkitDisplayingFullscreen ( bool ) HTMLMediaElement . webkitEnterFullScreen () HTMLMediaElement . webkitExitFullScreen ()

The Edge of HTML5

http://html5-demos.appspot.com/static/html5-therealbleedingedge/template/index.html#1