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
Post a Comment