Tag Archive

Paper like page turning affect using HTML 5

Published on February 7, 2012 By Pinakin Patel

Came across this today from a Venezuelan programmer called Emmanuel Garcia. He has put together javascript library to show pages similiar to a real magazine or newspaper. The page also renders well on a ipad and mobile device. It called turn.js and the site demos the plugin, with a good reference guide too.

New CSS3 features by browser checklist

Published on June 4, 2010 By annie

CSS3 features are now being supported by more and more browsers everyday. This site gives you a good breakdown of which features are currently implemented for each browser. http://www.findmebyip.com/litmus/

How HTML 5 link prefetching can make your site load faster with one line of code.

Published on June 3, 2010 By annie

One of the lesser-known jewels of HTML 5 is link prefetching. The idea is to extend the time-honored concept of image preloading to HTML content (and without any messy AJAX code). Here’s how it works: You add a line like this to your page: <link rel=”next” href=”page2.html”> Then the browser automatically downloads page2.html in a [...]