This repository was archived by the owner on Apr 12, 2024. It is now read-only.
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
ng-hide does work when using css keyframe sprite animations #8033
Closed
Description
When using CSS3 keyframe animations ng-hide does not work instantaneously but delayed.
CSS Sprite animation Code (stylus):
.spinner
width 100%
height 30px
background-image url("../assets/images/spinner_sprite.png")
animation play 1s steps(19) infinite
background-repeat no-repeat
@keyframes play
from
background-position center 0px
to
background-position center -570px
Dirty Fix
.ng-hide { display: none !important; }
fixes the issue but does not feel right :/