You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
415 B
14 lines
415 B
<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
|
|
<script type="text/javascript">
|
|
// <![CDATA[
|
|
function change(evt) {
|
|
var target = evt.target;
|
|
var radius = target.getAttribute("r");
|
|
radius = (radius == 15) ? 45 : 15
|
|
target.setAttribute("r", radius);
|
|
}
|
|
// ]]>
|
|
</script>
|
|
|
|
<circle cx="50" cy="50" r="45" fill="green" onclick="change(evt)" />
|
|
</svg>
|