<stop>

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.

We’d love to hear your thoughts on the next set of proposals for the JavaScript language. You can find a description of the proposals here.
Please take two minutes to fill out our short survey.

SVG の <stop> 要素は、グラデーションで使用する色と位置を定義します。この要素は常に <linearGradient> または <radialGradient> 要素の子です。

html
<svg
  viewBox="0 0 10 10"
  xmlns="http://www.w3.org/2000/svg"
  xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <linearGradient id="myGradient" gradientTransform="rotate(90)">
      <stop offset="5%" stop-color="gold" />
      <stop offset="95%" stop-color="red" />
    </linearGradient>
  </defs>

  <!-- using my linear gradient -->
  <circle cx="5" cy="5" r="4" fill="url('#myGradient')" />
</svg>

属性

offset

この属性は、グラデーションベクトルに沿って配置される色経由点の位置を定義します。 値の型: <number>|<percentage>; 既定値: 0; アニメーション:

stop-color

この属性は、グラデーションの色経由点の色を定義します。 CSS プロパティとして使用することができます。 値の型: currentcolor|<color>|<icccolor>; 既定値: black; アニメーション:

stop-opacity

この属性はグラデーションの色経由点の (不) 透明度を表します。 CSS プロパティとして使用することができます。 値の型: <opacity>; 既定値: 1; アニメーション:

使用コンテキスト

カテゴリーグラデーション要素
許可されている内容任意の数、任意の順序の以下の要素。
<animate><discard><script><set><style>

仕様書

Specification
Scalable Vector Graphics (SVG) 2
# StopElement

ブラウザーの互換性