Use CSS3 transitions with gradient backgrounds

Gradients don’t support transitions yet (although the current spec says they should support like gradient to like gradient transitions via interpolation.). If you want a fade-in effect with a background gradient, you have to set an opacity on a container element and ‘transition` the opacity. (There have been some browser releases that supported transitions on … Read more

Animate text for landing page

Yes, there is 🙂 var messages = [“Be”, “Up to Speed”, “Up to”, “Up”], counter = 0, target = document.getElementById(“message”); setInterval(function(){ target.innerHTML = messages[counter]; counter++; if( counter >= messages.length ) { counter = 0; } }, 300); body { font: bold 1em sans-serif; } #message { box-shadow: .125em 0 0 0 rgba(128,128,128,.3); color: MediumAquamarine; padding-right: … Read more