欢迎访问服务器技术网-www.fuwuqijishu.com

SVG Stroke 属性

SVG fuwuqijishu 2年前 (2022-06-21) 238次浏览 0个评论 扫描二维码
文章目录[隐藏]

SVG Stroke 属性


SVG Stroke 属性

SVG提供了一个范围广泛stroke 属性。在本章中,我们将看看下面:

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

所有stroke属性,可应用于任何种类的线条,文字和元素就像一个圆的轮廓。


SVG stroke 属性

Stroke属性定义一条线,文本或元素轮廓颜色:

下面是SVG代码:

实例

<svg xmlns=”http://www.w3.org/2000/svg&#8221; version=”1.1″>
  <g fill=”none”>
    <path stroke=”red” d=”M5 20 l215 0″ />
    <path stroke=”blue” d=”M5 40 l215 0″ />
    <path stroke=”black” d=”M5 60 l215 0″ />
  </g>
</svg>

对于Opera用户:查看SVG文件(右键单击SVG图形预览源)。


SVG stroke-width 属性

Tstroke- width属性定义了一条线,文本或元素轮廓厚度:

下面是SVG代码:

实例

<svg xmlns=”http://www.w3.org/2000/svg&#8221; version=”1.1″>
  <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>

对于Opera用户:查看SVG文件(右键单击SVG图形预览源)。


SVG stroke-linecap 属性

strokelinecap属性定义不同类型的开放路径的终结:

下面是SVG代码:

实例

<svg xmlns=”http://www.w3.org/2000/svg&#8221; version=”1.1″>
  <g fill=”none” stroke=”black” stroke-width=”6″>
    <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>

对于Opera用户:查看SVG文件(右键单击SVG图形预览源)。


SVG stroke-dasharray 属性

strokedasharray属性用于创建虚线:

下面是SVG代码:

实例

<svg xmlns=”http://www.w3.org/2000/svg&#8221; version=”1.1″>
  <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>

对于Opera用户:查看SVG文件(右键单击SVG图形预览源)。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2118.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900