Mega Code Archive

 
Categories / XML / SVG
 

Hiding Rectangles

<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN"  "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd"> <svg width="100%" height="100%">     <g transform="translate(100,100)">         <rect            x="0" y="0" width="200" height="100"            style="fill:red;stroke:blue;stroke-width:4;">                <set begin="mouseover" end="mouseout"                 attributeName="fill" from="#FF0000" to="#000000"/>                <set attributeName="visibility" attributeType="XML"                 to="hidden" begin="1s" dur="3s"/>         </rect>     </g> </svg>