0
我有下面的代碼,如何動畫svg矩形像音樂波一樣增長?
<div id="akbar">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg"
width="400" height="200" viewBox="0 0 400 200">
<g transform="scale(1,-1) translate(0,-200)">
<rect x="50" y="0" fill="#f00" width="100" height="100">
<animate attributeName="height"
from="0"
to="100"
dur="0.5s"
fill="freeze" />
</rect>
<rect x="150" y="0" fill="#f70" width="100" height="200">
<animate
attributeName="height"
from="0"
to="200"
dur="0.5s"
fill="freeze" />
</rect>
<rect x="250" y="0" fill="#ec0" width="100" height="150">
<animate
attributeName="height"
from="0"
to="150"
dur="0.5s"
fill="freeze" />
</rect>
</g>
</svg>
</div>
我想動畫SVG矩形成長喜歡樂浪。
我該如何做到這一點?
謝謝你的兄弟是解決我的問題,並很好地解釋了再次感謝... :-) –
歡迎您;) – wscourge
嗨有沒有使用動畫元素可以達到任何可能?http://stackoverflow.com/questions/ 41339237/how-to-acheive-the-animation-in-path-without-using-css –