I have a <polygon>
that i want to do an scale effect on mouseover, returning to the original size on mouse out, and with a smooth animation, any idea of how can i do that? Y tried with jQuery, changing the class of the <polygon>
but nothing works
The last thing i tried was this:
<div style="width:500px; background-color:#FFDB89">
<svg height="210" width="500">
<polygon id="idtriangle" class="triangle" points="200,10 250,190 160,210" style="fill:lime;stroke:purple;stroke-width:1"/>
</svg>
</div>
</body>
<script>
$( ".triangle" ).mouseover(function() {
$( "#idtriangle" ).animate({
MozTransform: 'scale(1.1,1.1)',
transform: 'scale(1.1,1.1)'
});
});
</script>
Thanks
You don't need to use JQuery. A CSS transition will do fine. To keep things simple, use a
<g>
element with a transform attribute to move the coordinate origin to the middle of the object you want to scale. That way it will stay in the same place instead of sliding away from the top left corner.