When scaling an SVG image using CSS scale conversion, does the image get blurry in Chrome or Safari?
Here is some of my code:
#logo { animation: cssAnimation 120s infinite; -webkit-animation: cssAnimation 120s infinite; -moz-animation: cssAnimation 120s infinite; } @keyframes cssAnimation { 0% { transform: scale(1) } 50% { transform: scale(2) } 100% { transform: scale(1); } }
Thanks so much for any help!
Raphael
source share