Ember updates

This commit is contained in:
2014-03-22 11:57:09 +01:00
parent db37c95e72
commit 37970e5bef
19 changed files with 52257 additions and 42604 deletions
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg
xmlns="http://www.w3.org/2000/svg"
width="100"
height="100"
viewBox="0 0 100 100"
>
<circle r="50" cx="50" cy="50" fill="transparent" stroke="#a00" stroke-width="2">
<animate attributeName="r" from="50" to="0" dur="1s" repeatCount="indefinite"/>
</circle>
<circle r="25" cx="50" cy="50" fill="transparent" stroke="#a00" stroke-width="1">
<animate attributeName="r" from="25" to="0" dur="1s" repeatCount="indefinite"/>
</circle>
</svg>

After

Width:  |  Height:  |  Size: 491 B

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg
xmlns="http://www.w3.org/2000/svg"
width="100"
height="100"
viewBox="0 0 100 100"
>
<circle r="50" cx="50" cy="50" fill="transparent" stroke="black" stroke-width="1">
<animate attributeName="r" from="50" to="0" dur="3s" repeatCount="indefinite"/>
</circle>
<circle r="25" cx="50" cy="50" fill="transparent" stroke="black" stroke-width="0.5">
<animate attributeName="r" from="25" to="0" dur="2s" repeatCount="indefinite"/>
</circle>
</svg>

After

Width:  |  Height:  |  Size: 495 B