<svg viewbox="-20 -20 100 100">
<circle r="15.29563" cx="0" stroke="#7dc4c2" fill="#5ea4a2">
</svg>
パーセントを基準にして以下のように円を埋める方法事前にSVGサークルの塗りつぶしの色をパーセンテージに基づいて下から上にすることは可能ですか?
http://i.stack.imgur.com/gVAN5.png
感謝。
<svg viewbox="-20 -20 100 100">
<circle r="15.29563" cx="0" stroke="#7dc4c2" fill="#5ea4a2">
</svg>
パーセントを基準にして以下のように円を埋める方法事前にSVGサークルの塗りつぶしの色をパーセンテージに基づいて下から上にすることは可能ですか?
http://i.stack.imgur.com/gVAN5.png
感謝。
は、あなたがこれを行うにはストップ不透明度の勾配を使用することができます。
はここで働い例です。 不透明度0と1の2つの「中間」停止点をそれぞれ追加し、必要なパーセンテージに両方のオフセットを設定します。
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="200" height="200">
<linearGradient id="lg" x1="0.5" y1="1" x2="0.5" y2="0">
<stop offset="0%" stop-opacity="1" stop-color="royalblue"/>
<stop offset="40%" stop-opacity="1" stop-color="royalblue"/>
<stop offset="40%" stop-opacity="0" stop-color="royalblue"/>
<stop offset="100%" stop-opacity="0" stop-color="royalblue"/>
</linearGradient>
<circle cx="50" cy="50" r="45" fill="url(#lg)" stroke="crimson" stroke-width="5"/>
</svg>
あなたも、それが
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="200" height="200">
<linearGradient id="lg" x1="0.5" y1="1" x2="0.5" y2="0">
<stop offset="0%" stop-opacity="1" stop-color="royalblue"/>
<stop offset="40%" stop-opacity="1" stop-color="royalblue">
<animate attributeName="offset" values="0;1;0" repeatCount="indefinite" dur="10s" begin="0s"/>
</stop>
<stop offset="40%" stop-opacity="0" stop-color="royalblue">
<animate attributeName="offset" values="0;1;0" repeatCount="indefinite" dur="10s" begin="0s"/>
</stop>
<stop offset="100%" stop-opacity="0" stop-color="royalblue"/>
</linearGradient>
<circle cx="50" cy="50" r="45" fill="url(#lg)" stroke="crimson" stroke-width="5"/>
</svg>
利点は、これは勾配
を変更することなく、任意の形状とサイズに動作することでアニメーション化することができうるさいossifrageに答えるためのの<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300" width="400" height="200">
<linearGradient id="lg" x1="0.5" y1="1" x2="0.5" y2="0">
<stop offset="0%" stop-opacity="1" stop-color="royalblue"/>
<stop offset="40%" stop-opacity="1" stop-color="royalblue"/>
<stop offset="40%" stop-opacity="0" stop-color="royalblue"/>
<stop offset="100%" stop-opacity="0" stop-color="royalblue"/>
</linearGradient>
<circle cx="50" cy="50" r="45" fill="url(#lg)" stroke="crimson" stroke-width="5"/>
<circle cx="250" cy="150" r="145" fill="url(#lg)" stroke="crimson" stroke-width="5"/>
<rect x="400" y="20" width="100" height="100" fill="url(#lg)" stroke="crimson" stroke-width="5"/>
<path d="M50 150L95 290 h-90z" fill="url(#lg)" stroke="crimson" stroke-width="5"/>
<path d="M450 205 A45 45 0 0 1 450 295A100 100 0 0 0 450 205z" fill="url(#lg)" stroke="crimson" stroke-width="5"/>
</svg>
これを行う最も簡単な方法は、円形の穴があるマスクを作成し、その背後に長方形をアニメーション化することです。例えば:ここで
<path fill="#fff" fill-rule="evenodd"
d="M0 0 200 0 200 200 0 200ZM20 100 A80 80 0 0 0 180 100 80 80 0 0 0 20 100Z"/>
経路データ200のユニット広い正方形ボックス(M0 0 200 0 200 200 0 200Z
)で始まり、その後(A80 80 0 0 0 180 100 80 80 0 0 0 20 100Z
)内径80単位の円を描くように2つの円弧を使用します。 evenodd
塗りつぶし規則は、円が四角形から切り取られることを保証します。
あなたが円を下から上に記入したい場合は、あなたがrotate
変換を使用する必要があります:RECTよう
<rect transform="rotate(180 100 100)" x="20" y="20" width="160" height="0" fill="#47f" id="fillup"/>
これは、SVG画像の真ん中の周りに座標系を回転させます高さを上げると上向きに成長します。ここでは、私はそれの上にマウスを移動すると、rectの高さを変更するCSSトランジションを使用しています。しかし、あなたはJavascriptやJQueryを使って高さをあなたが望むものに変更することができます。
svg #fillup { height:0px; transition:height 0.5s; }
svg:hover #fillup { height:160px; }
<svg width="200" height="200" viewBox="0 0 200 200">
<rect x="10" y="10" width="180" height="180" fill="#eee"/>
<rect transform="rotate(180 100 100)" x="20" y="20"
width="160" height="0" fill="#47f" id="fillup"/>
<path fill="#fff" fill-rule="evenodd"
d="M0 0 200 0 200 200 0 200ZM20 100 A80 80 0 0 0
180 100 80 80 0 0 0 20 100Z"/>
<circle cx="100" cy="100" r="90" fill="none" stroke="#888"
stroke-width="20"/>
<circle cx="100" cy="100" r="99" fill="none" stroke="#333"
stroke-width="1"/>
<circle cx="100" cy="100" r="80" fill="none" stroke="#333"
stroke-width="1"/>
</svg>
感謝。 –
ありがとうHolger Will ...あなたはsvgの獣です... –
CSSでこれを行う方法はありますか?私はあなたの例を使用して、それを愛したが、私はIEがSMILをサポートしていないことを知った – gkkirsch