14/5. feladat megoldása


<?xml version="1.0"?>

<!DOCTYPE svg PUBLIC "-//W3//DTD SVG 1.1//EN"
	"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">

<svg xmlns= "http://www.w3.org/2000/svg"
     xmlns:xlink= "http://www.w3.org/1999/xlink"
     version="1.1" width="400" height="400">

<circle cx="100" cy="100" r="20" style="fill: lawngreen;">
	<animate attributeName="r"
                 attributeType="XML"
                 begin="2s" dur="6s"
                 values="20; 40; 20; 60; 20; 80; 20"
                 fill="freeze"/>
</circle>

<circle cx="300" cy="100" r="20" style="fill: lawngreen;">
	<animate attributeName="r"
                 attributeType="XML"
                 begin="2s" dur="6s"
                 values="20; 40; 20; 60; 20; 80; 20"
                 keyTimes="0; 0.1; 0.6; 0.7; 0.8; 0.9; 1"
                 fill="freeze"/>
</circle>

</svg>