html - Internet Explorer 10 blurred scaling -


in windows 8 javascript app have elements toggled visibility when button clicked. gave them subtle animation make experience less linear using css keyframes, so:

@keyframes visible {     0% {transform: scale(0.1);         opacity: 0;}     80% {transform: scale(1.1)}     100% {transform: scale(1);           opacity: 1;} } 

this works fine, seems scaling element down 1.1 1 causes content blur until mouse/touch event registered. doesn't good, , wondering if there little tricks avoid this, or if there isn't there alternative use desired result without blurring content?

i managed fix myself adding font-size:inherit; last animation frame. text isn't blurred , neither background images!


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -