pagina html
<!DOCTYPE html>
<html>
<head>
<title>Attribute Animation with SMIL</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<svg width="300px" height="100px">
<path id="color" d="M54.9,69.3l-0.7-6.2h-0.3c-2.7,3.8-8,7.3-14.9,7.3c-9.9,0-14.9-7-14.9-14c0-11.8,10.5-18.3,29.4-18.2v-1
c0-4-1.1-11.3-11.1-11.3c-4.5,0-9.3,1.4-12.7,3.6l-2-5.9c4-2.6,9.9-4.3,16.1-4.3c14.9,0,18.6,10.2,18.6,20v18.3
c0,4.2,0.2,8.4,0.8,11.7H54.9z M53.6,44.4c-9.7-0.2-20.7,1.5-20.7,11c0,5.8,3.8,8.5,8.4,8.5c6.4,0,10.4-4,11.8-8.2
c0.3-0.9,0.5-1.9,0.5-2.8V44.4z"/>
</g>
</svg>
</body>
</html>
Pagina css
@charset "utf-8";
/* CSS Document */
#color {
fill: #cd3512;
fill-opacity: 1;
stroke: #000000;
stroke-width: 4;
stroke-opacity: 1;
cursor: pointer;
transition: all 1s ease-in-out;
}
#color:hover{
fill: #FF0000;
stroke: #0000FF;
-webkit-transform: scale(1.1) rotate(10deg);
-moz-transform: scale(1.1) rotate(10deg);
transform: scale(1.1) rotate(10deg);
-webkit-transform-origin: 500px 60px;
-moz-transform-origin: 500px 60px;
transform-origin: 500px 60px;
}