属性 | |
offset |
グラデーション開始から終了座標の間を0%から100%もしくは0~1とした位置。 少なくとも0%(0)と100%(1)の2つは指定すること。 |
stop-color | offset属性で指定した位置にて、グラデーション変化が到達しているべき色。 |
stop-opacity |
offset属性で指定した位置にて、グラデーション変化で到達しているべき不透明度。 0(完全に透明)~1(全く透明でない) |
属性 | |||||||
id | グラデーション名 | ||||||
x1 y1 x2 y2 |
グラデーションの開始点(x1, y1) 終了点(x2, y2)の座標 塗りつぶしするグラフィックを囲む矩形領域内の座標をパーセンテージで指定。デフォルトは、水平な左から右への方向。 x1="0%", y1="0%", x2="100%", y2="0%" |
||||||
spreadMethod |
x1~y2属性の範囲外のグラデーションの適用方法
|
<svg width="10cm" height="10cm" viewBox="0 0 100 100"
xmlns="http://www.w3.org/2000/svg"> <linearGradient id="bluered" x1="0%" y1="100%" x2="100%" y2="0%"> <stop offset="0%" stop-color="blue"/> <stop offset="100%" stop-color="red"/> </linearGradient> <rect x="10" y="20" width="80" height="30" stroke="black" fill="url(#bluered)"/> <linearGradient id="grwhaq" x1="0%" y1="0%" x2="100%" y2="100%"> <stop offset="0%" stop-color="green"/> <stop offset="50%" stop-color="white"/> <stop offset="100%" stop-color="aqua"/> </linearGradient> <rect x="10" y="50" width="80" height="30" stroke="black" fill="url(#grwhaq)"/> </svg> |
<svg width="10cm" height="10cm" viewBox="0 0 100 100"
xmlns="http://www.w3.org/2000/svg"> <linearGradient id="gradopacity"> <stop offset="0%" stop-color="darkgreen" stop-opacity="1.0"/> <stop offset="50%" stop-color="darkgreen" stop-opacity="0.3"/> <stop offset="100%" stop-color="darkgreen" stop-opacity="0"/> </linearGradient> <rect x="10" y="30" width="60" height="30" fill="yellow"/> <rect x="10" y="30" width="60" height="30" stroke="black" fill="url(#gradopacity)"/> </svg> |
<svg width="10cm" height="10cm" viewBox="0 0 100 100"
xmlns="http://www.w3.org/2000/svg"> <linearGradient id="gradpad" x1="30%" y1="0%" x2="70%" y2="0%" spreadMethod="pad"> <stop offset="0%" stop-color="gold"/> <stop offset="100%" stop-color="white"/> </linearGradient> <linearGradient id="gradrepeat" x1="30%" y1="0%" x2="70%" y2="0%" spreadMethod="repeat"> <stop offset="0%" stop-color="indigo"/> <stop offset="100%" stop-color="white"/> </linearGradient> <linearGradient id="gradreflect" x1="30%" y1="0%" x2="70%" y2="0%" spreadMethod="reflect"> <stop offset="0%" stop-color="salmon"/> <stop offset="100%" stop-color="white"/> </linearGradient> <rect x="10" y="20" width="60" height="20" stroke="black" fill="url(#gradpad)"/> <rect x="10" y="40" width="60" height="20" stroke="black" fill="url(#gradrepeat)"/> <rect x="10" y="60" width="60" height="20" stroke="black" fill="url(#gradreflect)"/> </svg> |
属性 | |
id | グラデーション名 |
cx cy |
グラデーションの開始する中心座標 デフォルトはcx、cyともに50%(領域の中央)。 |
r |
グラデーションの半径 パーセンテージで指定する。デフォルトは50%(範囲全体)。 |
spreadMethod |
cx、cy、r属性の範囲外のグラデーションの適用方法 線形グラデーションlinearGradientと同様。 |
<svg width="10cm" height="10cm" viewBox="0 0 100 100"
xmlns="http://www.w3.org/2000/svg"> <radialGradient id="lightdarkgreen"> <stop offset="0%" stop-color="lightgreen"/> <stop offset="100%" stop-color="darkgreen"/> </radialGradient> <circle cx="30" cy="30" r="25" fill="url(#lightdarkgreen)"/> <radialGradient id="aquablue" cx="30%" cy="30%" r="70%"> <stop offset="0%" stop-color="aqua"/> <stop offset="100%" stop-color="blue"/> </radialGradient> <circle cx="70" cy="70" r="25" fill="url(#aquablue)"/> </svg> |
<svg width="10cm" height="10cm" viewBox="0 0 100 100"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <linearGradient id="bluelime"> <stop offset="0%" stop-color="blue"/> <stop offset="100%" stop-color="lime"/> </linearGradient> <linearGradient id="leftright" xlink:href="#bluelime" x2="100%" y2="0%"/> <linearGradient id="upperlower" xlink:href="#bluelime" x2="0%" y2="100%"/> <rect x="10" y="20" width="80" height="30" stroke="black" fill="url(#leftright)"/> <rect x="10" y="50" width="80" height="30" stroke="black" fill="url(#upperlower)"/> </svg> |