Category: css

Syntatic Sugar : Front End Trend

What is syntatic sugar? In computer science, syntactic sugar is syntax within a programming language that is designed to make things easier to read or to express. It…

Simple Animation using CSS3 – Tutorial

RESULT: Try tapping or petting the dog. CODE: @keyframes bounceupdown { from { transform: translate(0px,-100px); -ms-transform: translate(0px,-100px); -webkit-transform: translate(0px,-100px); } to { transform: translate(0px,0px); -ms-transform:translate(0px,0px); -webkit-transform:translate(0px,0px); } }…