SVG漸變


漸變是指形狀內一種顏色平滑過渡到另一種顏色。 SVG提供了兩種型別的漸變。

  • 線性漸變 - 表示從一個方向到另一個方向的一種顏色到另一種顏色的線性轉換。
  • 逕向漸變 - 表示從一個方向到另一個方向的一種顏色到另一種顏色的圓形過渡。

線性漸變

以下是<linearGradient>元素的語法宣告。 我們只顯示了一些主要的屬性。

<linearGradient
   gradientUnits ="units to define co-ordinate system of contents of gradient"
   gradientTransform = "definition of an additional transformation from the gradient coordinate system onto the target coordinate system"

   x1="x-axis co-ordinate" 
   y1="y-axis co-ordinate"     
   x2="x-axis co-ordinate" 
   y2="y-axis co-ordinate"     

   spreadMethod="indicates method of spreading the gradient within graphics element"
   xlink:href="reference to another gradient" >
</linearGradient>

屬性

編號 名稱 描述
1 gradientUnits 用來定義梯度內各種長度值的坐標系的單位。 如果gradientUnits =「userSpaceOnUse」,則值表示使用漸變元素時當前使用者坐標系中的值。 如果patternContentUnits =「objectBoundingBox」,則值表示在使用漸變元素時就地參照元素上的邊界框的分數或百分比值。 預設是userSpaceOnUse
2 x1 梯度向量的x軸坐標,預設值是0
3 y2 梯度向量的y軸坐標,預設值是0
4 x2 梯度向量的x軸坐標。 預設值是0
5 y2 y軸坐標的梯度向量。 預設值是0
6 spreadMethod 指示在圖形元素內散布漸變的方法。 預設是'pad'
7 xlink:href 用於指另一個漸變。

範例

檔案:testSVG.html -

<html>
   <title>SVG Linear Gradient</title>
   <body>

      <h1>Sample SVG Linear Gradient</h1>

      <svg width="600" height="600">

         <defs>
            <linearGradient id="sampleGradient">
               <stop offset="0%" stop-color="#FF0000" />
               <stop offset="100%" stop-color="#00FFF00" />
            </linearGradient>
         </defs>

         <g>
            <text x="30" y="50" >Using Linear Gradient: </text>
            <rect x="100" y="100" width="200" height="200" stroke="green" stroke-width="3" 
            fill="url(#sampleGradient)" />
         </g>

      </svg>

   </body>
</html>

以下是對上面程式碼的一些解釋 -

  • 定義為sampleGradient的一個<linearGradient>元素。
  • linearGradient中,兩個偏移量用兩種顏色定義。
  • rect元素中,在填充屬性中,指定漸變的URL以使用之前建立的漸變填充矩形。

在Chrome瀏覽器中開啟檔案:testSVG.html,得到以下結果 -

逕向漸變

以下是<radialGradient>元素的語法宣告。 我們只顯示了一些主要屬性。

<radialGradient
   gradientUnits ="units to define co-ordinate system of contents of gradient"
   gradientTransform = "definition of an additional transformation from the gradient coordinate system onto the target coordinate system"

   cx="x-axis co-ordinate of center of circle." 
   cy="y-axis co-ordinate of center of circle."     

   r="radius of circle" 

   fx="focal point for the radial gradient"     
   fy="focal point for the radial gradient"     

   spreadMethod="indicates method of spreading the gradient within graphics element"
   xlink:href="reference to another gradient" >
</radialGradient>

屬性

編號 名稱 描述
1 gradientUnits 用來定義梯度內各種長度值的坐標系的單位。 如果gradientUnits =「userSpaceOnUse」,則值表示使用漸變元素時當前使用者坐標系中的值。 如果patternContentUnits =「objectBoundingBox」,則值表示在使用漸變元素時就地參照元素上的邊界框的分數或百分比值。 預設是userSpaceOnUse。
2 cx 最大圓梯度向量中心的x軸坐標。 預設值是0
3 cy 最大的圓梯度向量中心的y軸坐標。 預設值是0
4 r 梯度向量最大圓的中心的半徑。 預設值是0。
5 fx 逕向漸變的焦點,預設值是0
6 fy 逕向漸變的焦點。 預設值是0
7 spreadMethod 指示在圖形元素內散布漸變的方法。 預設是'pad'
8 xlink:href 用於指另一個漸變。

範例

檔案:testSVG.html -

<html>
   <title>SVG Radial Gradient</title>
   <body>

      <h1>Sample SVG Radial Gradient</h1>

      <svg width="600" height="600">
         <defs>
            <radialGradient id="sampleGradient">
               <stop offset="0%" stop-color="#FF0000" />
               <stop offset="100%" stop-color="#00FFF00" />
            </radialGradient>
         </defs>

         <g>
            <text x="30" y="50" >Using Radial Gradient: </text>
            <rect x="100" y="100" width="200" height="200" stroke="green" stroke-width="3"
            fill="url(#sampleGradient)" />
         </g>
      </svg>

   </body>
</html>
  • 定義為sampleGradient的一個<radialGradient>元素。
  • radialGradient中,兩個偏移量用兩種顏色定義。
  • rect元素中,在填充屬性中,指定漸變的URL以使用之前建立的漸變填充矩形。

在Chrome瀏覽器中開啟檔案:textSVG.html -