T1 logo in JS+PNG
Initially, my logo was 105K GIF. Now it’s transparent PNG+JS. As easy as:
06 | var t1_logo = document.getElementById( "t1_tl" ); |
07 | color < 360 ? color = color + clrInc : color = 0; |
08 | t1_logo.style.backgroundColor = "hsl(" +color+ ", 100%, 50%)" ; |
12 | var logoChCol = setInterval(chcolor, interval); |
14 | window.onload = stchcol; |
and
2 | < a href = "http://tiamat.name" >< img decoding = "async" src = "/img/t1_x180_y80_transparent.png" alt = "Main page" ></ a > |
Benefits are smaller page size, smaller prcessor load. Eventuall, animation in JS consumes lees resources than a GIF rendering. 35% losad with GIF animation vs 15% load with JS animation. At least, in Fedora 16 with nouveau.
The idea was given to me by fiskus, but it was quite a long ago, so I feel I had the same idea at the moment he suggested it to me. Nevertheless, he desrves a credit.