1

Has anybody experienced flicker effect like this?

enter image description here

I use Angular with ngAnimate module. Without ngAnimate there is no flicker but also other needed animations goes away. So I need to stay with ngAnimate but get rid of flicker.

Initial state of popup:

.fade-scale {   
  -webkit-transition: all .2s ease-in-out;
  -webkit-transform:scale(0.8);
  opacity:0; 
}

On tap it adds this class on popup

.show {
  -webkit-transform:scale(1);
  opacity:1;      
}

All of these don't help

-webkit-perspective: 1000;
-webkit-backface-visibility: hidden;
-webkit-transform:translate3d(0,0,0);
-webkit-transform-style: preserve-3d;

0 Answers0