mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-13 07:41:08 +01:00
Bit change in the code structure 😃
This commit is contained in:
parent
25a619a481
commit
294b7e87bb
1 changed files with 7 additions and 0 deletions
|
@ -1,20 +1,27 @@
|
|||
@keyframes heartBeat{
|
||||
|
||||
0%{
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
14%{
|
||||
transform: scale(1.3);
|
||||
}
|
||||
|
||||
28%{
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
42%{
|
||||
transform: scale(1.3);
|
||||
}
|
||||
|
||||
70%{
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.heartBeat{
|
||||
animation-name: heartBeat;
|
||||
animation-duration: 1.3s;
|
||||
|
|
Loading…
Reference in a new issue