I am currently working on a CSS3 pulsing circle (animating scale to 1.1). To address a jumpy animation issue in Firefox, I have added a slight rotation.
animation: button_pulse 2s infinite ease-out;
transform: scale(1.1) rotate(0.1deg);
Despite this adjustment, there seems to be a small problem on the right side of the circle in Firefox, creating what appears to be a white lip. Any suggestions on how to make the entire circle smoother?
Interestingly, the circle looks great in Chrome.
http://jsfiddle.net/alexcroox/9JpHT/
Appreciate any help. Thank you.