This repo contains a set if examples using CSS3 properties to get some effects and animations
transition: color 3s linear;
transition: left 2s linear;
transition: left .3s linear;
background: linear-gradient(to right, #000, #FFF);
-webkit-box-reflect: below 0px -webkit-linear-gradient(bottom, white 0%, transparent 50%, transparent 100%);
transition: left .6s linear;
-webkit-mask-box-image: url(../img/letter-a.png);
img {
transition: transform 1s linear;
&:hover {
transform: rotate(180deg);
}
}
@keyframes pulse {
from {
transform: rotate(0deg);
}
to {
transform: rotate(180deg) scale(2);
}
}
.pulse {
animation: pulse 4s alternate 2;
...
}
@keyframes pulse {
0% {}
50% { transform: rotate(-180deg) scale(5) }
100% { transform: rotate(-360deg) scale(.2) }
}
.pulse {
animation: pulse 4s alternate 2;
...
}