最高效的WEB程序员学习网站
SVG手册 HTML5手册
 

SVG边线边框属性


SVG里关于图形边框/边线的属性有不少,这里,我们将主要介绍下面这几个:

  • stroke
  • stroke-width
  • stroke-linecap
  • stroke-dasharray

所有这些边框属性都可以应用于各种图形/文本/线条中。


SVG stroke 属性

这个stroke属性用来定义图形、文本等的边线颜色:


  
    
    
    
  
  Sorry, your browser does not support inline SVG.

上面的图形使用了下面的SVG代码:

<svg height="80" width="300">
  <g fill="none">
    <path stroke="red" d="M5 20 l215 0" />
    <path stroke="black" d="M5 40 l215 0" />
    <path stroke="blue" d="M5 60 l215 0" />
  </g>
</svg>

SVG stroke-width 属性

stroke-width属性用来定义图形或文字边线的宽度:


  
    
    
    
  
  Sorry, your browser does not support inline SVG.

上面的图形使用了下面的SVG代码:

<svg height="80" width="300">
  <g fill="none" stroke="black">
    <path stroke-width="2" d="M5 20 l215 0" />
    <path stroke-width="4" d="M5 40 l215 0" />
    <path stroke-width="6" d="M5 60 l215 0" />
  </g>
</svg>

SVG stroke-linecap 属性

stroke-linecap属性用来定义开放式路径的端点的样子:


  
    
    
    
  
  Sorry, your browser does not support inline SVG.

上面的图形使用了下面的SVG代码:

<svg height="80" width="300">
  <g fill="none" stroke="black" stroke-width="20">
    <path stroke-linecap="butt" d="M5 20 l215 0" />
    <path stroke-linecap="round" d="M5 40 l215 0" />
    <path stroke-linecap="square" d="M5 60 l215 0" />
  </g>
</svg>

SVG stroke-dasharray 属性

stroke-dasharray属性用来创建虚线:



   
Sorry, your browser does not support inline SVG.

上面的图形使用了下面的SVG代码:

<svg height="80" width="300">
  <g fill="none" stroke="black" stroke-width="4">
    <path stroke-dasharray="5,5" d="M5 20 l215 0" />
    <path stroke-dasharray="10,10" d="M5 40 l215 0" />
    <path stroke-dasharray="20,10,5,5,5,10" d="M5 60 l215 0" />
  </g>
</svg>