SVG inline animation

HTML

<svg width="340" height="333" viewPort="0 0 340 333" version="1.1" xmlns="http://www.w3.org/2000/svg">
    <circle r="50" cx="100" cy="100" style=" fill: white; stroke: #383838; stroke-width: 3; stroke-dasharray: 10, 5;">
        <animateTransform attributeName="transform" 
                          attributeType="XML"
                          type="rotate" 
                          from="0 100 100"
                          to="360 100 100"
                          dur="3s"
                          repeatCount="indefinite" 
                          begin="mouseover" 
                          end="mouseleave" />
                           <animateTransform attributeName="transform" 
                          attributeType="XML"
                          type="translate" 
                          from="0 100 100"
                          to="360 100 100"
                          dur="0.1s"
                          repeatCount="indefinite" 
                          begin="mouseover" 
                          end="mouseleave" />
    </circle>
</svg>