🎉 New book alert! 'From Coder To CTO' - My journey and lessons learned. Level up your career - get your copy today! 🚀 ✕
KidsIL

Asaf Zamir – Chief Technology Officer & AI/Cloud Consultant. Founder of CloudExpat, AZdev. Author of Coder to CTO.

  • CLOUD
  • AI
  • NODEJS
  • SERVERLESS
  • Hire me
    1. Home »
    2. Html5
  • CSS3 Transitions to replace JavaScript animations

    Posted on Nov 21, 2013

    CSS3
    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)
    Read more ›
    Tagged with html5, css3, css transitions, css 3d
    Posted in Technology
  • HTML5 Local Storage - letting your Web Apps do more

    Posted on Nov 14, 2013

    html5
    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.

    Read more ›
    Tagged with html5, local storage, localstorage, session storage, sessionstorage, web apps
    Posted in Technology
  • Fastbook - HTML5 is ready

    Posted on Dec 22, 2012

    facebooklogoFastBook 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.

    Read more ›
    Tagged with facebook, html5, fastbook, sencha
    Posted in Technology
  • It's been a while

    Posted on May 9, 2011
    <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 …
    Read more ›
    Tagged with audio capture, capturing, firefox, html5, mozilla rainbow, record, recording, sound
    Posted in Technology
  • Previous Page: 1 of 1 Next
  • Welcome to KidsIL

    A blog for Tech, Life, and beyond!


    Interesting ever-green articles of mine:
    • Fractional CTO - Why Your Company Needs One
    • How I got hacked in 10 hours on Google Cloud Platform
    • Getting Distance between 2 points with MySQL Query
    • Generating with MeanJS and Yeoman Generator
    • Python's virtualenv, Ruby's RVM and PHP's vagrant

    Take a look at Meteoro.
    A Pomodoro app built with Meteor.
    For those who like to work on their productivity.


    If you're into Django, feel free to mess with AgriCatch, the engine I've built for Berlin On Feier (events app) that grew well beyond the app, into a general data aggregation library.
  • Recent Posts

    • The Hidden Cost of Perfect Code
    • Node.js Version Causing JSON Parse Errors: A Solution
    • Scalable AI Solutions: Building Cloud-Native RAG Systems for Enterprise FinTech
    • Bridging Diagrams and Code: A Journey with PUML and Graphviz
    • Unleashing the Power of Serverless with Cloudflare

© 2025 KidsIL