CSS3 Transitions to replace JavaScript animations
Until recently whenever I had to do the simplest animation I always had to use JavaScript code.
If you're using jQuery it's pretty easy to make simple effects.
The most known ones would probably be slideDown() and slideUp().
Custom animation is also pretty easy with jQuery:1 2 3 4 5 6 7 8 9 10 11 12
$('div.red').hover(function() { $('div.red').animate({ width: '+=50', height: '+=50' }, 200) }, function() { $('div.red').animate({ width: '-=50', height: '-=50' }, 200) });
(Working example)Posted in TechnologyHTML5 Local Storage - letting your Web Apps do more
Local Storage (or Web Storage), is a simple yet very powerful feature of HTML5, that is pretty much supported across the board
by now, as in, by almost all browsers.
In essence, Local Storage lets you store information for a long period of time (more on that in a bit).
This has many uses, especially for Web Apps.Posted in TechnologyFastbook - HTML5 is ready
FastBook is an interesting project made by Sencha
to basically prove that Facebook’s switch to Native applications on Android
might have not been the right way to go.Posted in TechnologyIt's been a while
<a href="http://mozillalabs.com/rainbow/"><img class="alignright size-full wp-image-892" title="rainbow-header" src="{{< siteparam "mediaBucket" >}}/2011/05/rainbow-header.png" alt="Rainbow" width="193" height="193" /></a>Hello my fellow readers, It's been a while since I wrote something of …Posted in Technology- Previous Page: 1 of 1 Next