You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
538 B
24 lines
538 B
7 years ago
|
.default-animation {
|
||
|
transition: all 0.5s ease;
|
||
|
}
|
||
|
|
||
|
// Pulse Animation
|
||
|
.pulse {
|
||
|
animation-name: pulse_animation;
|
||
|
animation-duration: 2000ms;
|
||
|
transform-origin:70% 70%;
|
||
|
animation-iteration-count: infinite;
|
||
|
animation-timing-function: linear;
|
||
|
}
|
||
|
|
||
|
@keyframes pulse_animation {
|
||
|
0% { transform: scale(1); }
|
||
|
30% { transform: scale(1); }
|
||
|
40% { transform: scale(1.08); }
|
||
|
50% { transform: scale(1); }
|
||
|
60% { transform: scale(1); }
|
||
|
70% { transform: scale(1.05); }
|
||
|
80% { transform: scale(1); }
|
||
|
100% { transform: scale(1); }
|
||
|
}
|