|
Howdy,
There are no easy questions, just questions :). There are different ways you could do that. Basically, what you could do is have two symbols instead of one. The first one would the top of the cube, and the other one the rest of the cube. Then, you would have both <use>d as part of a <g>roup and <animate> the whole <g>roup. It would look roughly like this:
<g id="g1">
<use xlink:href="#topOfCube" id="top1" />
<use xlink:href="#restOfCube" />
<animate begin="top1.mouseover" ... />
</g>
Hope that helps,
Antoine
|