Mega Code Archive

 
Categories / XML / SVG
 

Mouse Clicks and Gradient Colors

<?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%">     <defs>        <animateColor           id="circleGradient1"           xlink:href="#shape"           attributeName="fill"           values="rgb(255,0,0);rgb(0,255,255);                   rgb(0,128,151);rgb(255,0,0)"           dur="3s" begin="indefinite"/>     </defs>          <a xlink:href="#circleGradient1">         <circle id="shape"                 cx="100" cy="100" r="50"                 style="fill:rgb(255,255,0)"/>     </a> </svg>