raphael js drag rotation in Firefox and Internet Explorer
问题 I am new to the SVG and Raphael world and am trying to create a radial dial that has a draggable needle. The drag works fine in Chrome, Safari, and Opera. In Internet Explorer the movement is very jittery and and will often return to it's initial starting position. In Firefox, it doesn't work at all :( var paper = Raphael("paper1", 250, 250); var dialCenter = 125; var dialRadius = 125; var dialCircum = 2 * Math.PI * dialRadius; var circle = paper.circle(dialCenter, dialCenter, dialRadius)