mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-17 09:38:28 +01:00
Fixed bug in Chrome
Fixed bug in Chrome where opacity is reverted back after 50%. (If I set an object to have 0 opacity then play the animation/apply the class, the object disappears when it is complete). This does not change the animation but prevents the bug from happening.
This commit is contained in:
parent
f59567e4c7
commit
85e0ee212b
1 changed files with 2 additions and 1 deletions
|
@ -14,10 +14,11 @@
|
|||
}
|
||||
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
.bounceIn {
|
||||
animation-name: bounceIn;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue