Category Archives: html5 Notes

html5 game maker

http://www.scirra.com/ http://www.yoyogames.com

Posted in html5 Notes | Leave a comment

interactive canvas

canvas draw http://simonsarris.com/blog/510-making-html5-canvas-useful video http://www.addyosmani.com/resources/canvasphoto/ http://webdev.stephband.info/parallax_demos.html http://9elements.com/io/projects/html5/canvas/ http://ghost-hack.com/post/jsexperiments/tunneler/tunneler.html http://hakim.se/experiments/html5/trail/03/ http://hakim.se/experiments/html5/sinuous/01/# http://open.adaptedstudio.com/html5/many-lines/index.html http://onecm.com/projects/canopy/ http://mrdoob.com/projects/chromeexperiments/ball_pool/ http://hakim.se/experiments/html5/blob/03/

Posted in html5 Notes | Leave a comment

conditional for IE

http://html5shiv.googlecode.com/svn/trunk/html5.js Checks if the user is using anything lower than IE9; if true use Remy Sharp’s HTML5 script <!–[if lt IE 9]><script src=”http://html5shiv.googlecode.com/svn/trunk/html5.js”> </script>[endif]–> source: http://db.tt/RcXa13TQ

Posted in html5 Notes | Leave a comment

Conditional Comment for IE Fix

reference: www.catswhocode.com The html5.js is a very interesting project which aims to make Internet Explorer HTML5 compatible. The only thing you have to do is to embed the html5.js script in your html document header. You can hotlink the script, as shown in the example below: <!–[if IE]> <script src=”http://html5shiv.googlecode.com/svn/trunk/html5.js”></script> <![endif]–> » Source : http://remysharp.com/2009/01/07/html5-enabling-script/

Posted in html5 Notes | 3 Comments