SVG绘制1

作者: David_Rao | 来源:发表于2020-01-31 23:07 被阅读0次

绘制矩形

<svg width="500" height="500">
    <!--
    x/y: 指定绘制的位置
    width/height: 指定绘制的大小
    fill: 修改填充的颜色
    stroke: 修改描边的颜色
    stroke-width:描边宽度
    rx/ry:设置圆角的半径,如果只设置一个,两者相同
    -->
    <rect x="100" y="100" width="100" height="100" fill="blue" stroke="black" stroke-width="10" rx="10"></rect>
</svg>

绘制圆形

<svg width="500" height="500">
    <!--方式一-->
    <rect x="100" y="100" width="100" height="100" rx="50"></rect>
    <!--方式二
    cx/cy: 圆绘制的位置
    r: 圆的半径
    -->
    <circle cx="100" cy="100" r="50"></circle>
</svg>

绘制椭圆

<svg width="500" height="500">
    <!--方式一-->
    <rect x="100" y="100" width="200" height="100" rx="100" ry="50"></rect>
    <!--方式二
    cx/cy: 椭圆绘制的位置(圆心的位置)
    rx: 水平方向的半径
    ry: 垂直方向的半径
    -->
    <ellipse cx="100" cy="100" rx="100" ry="50"></ellipse>
</svg>

绘制直线

<svg width="500" height="500">
    <!--绘制直线
    x1/y1: 设置起点
    x2/y2: 设置终点
    -->
    <line x1="100" y1="100" x2="300" y2="100" stroke="#000"></line>
    <!--绘制折线
    points: 设置所有的点,两两一对
    -->
    <polyline points="100 100 300 100 300 300" stroke="#000" fill="none"></polyline>
    <!--绘制多边形
    自动关闭路径
    -->
    <polygon points="100 100 300 100 300 300" stroke="#000" fill="none"></polygon>
</svg>

SVG常用属性

  • fill: 修改填充颜色
  • fill-opacity: 0~1 设置填充颜色的透明度
  • stroke: 修改描边颜色
  • stroke-width: 修改描边宽度
  • stroke-opacity: 0~1 设置描边透明度
  • stroke-linecap: butt/square/round 设置线段两端帽子
  • stroke-dasharray: 设置虚线
  • stroke-dashoffset: 设置虚线偏移位
  • stroke-linejoin: miter/bevel/round 设置折线转角样式
<svg width="500" height="500">
    <rect x="100" y="100" width="100" height="100" fill="blue" fill-opacity="0.3"></rect>
    <line x1="100" y1="300" x2="300" y2="300" stroke="blue" stroke-width="10" stroke-opacity="0.5" stroke-linecap="round"></line>
    <line x1="100" y1="400" x2="300" y2="400" stroke="blue" stroke-width="10" stroke-dasharray="10 20 30" stroke-dashoffset="100"></line>
    <polyline points="100 100 300 100 300 300" stroke="#000" stroke-width="10" fill="none" stroke-linejoin="round"></polyline>
</svg>

用css制作svg小动画

在SVG中标签中的属性都是可以直接在css中使用的

<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        svg{
            display: block;
            margin: 0 auto;
            background: skyblue;
        }
        line{
            stroke: red;
            stroke-width: 10px;
            stroke-dasharray: 10px;
            animation: move 10s 0s linear infinite;
        }
        @keyframes move {
            from{
                stroke-dashoffset: 0;
            }
            to{
                stroke-dashoffset: -200px;
            }
        }
    </style>
</head>
<body>
<svg width="500" height="500">
    <line x1="100" y1="100" x2="300" y2="100"></line>
</svg>
</body>

相关文章

  • 无标题文章

    SVG svg和canvas的区别 svg绘制的是矢量图, canvas绘制的是位图 svg使用XML来绘制图片,...

  • SVG绘制1

    绘制矩形 绘制圆形 绘制椭圆 绘制直线 SVG常用属性 fill: 修改填充颜色 fill-opacity: 0~...

  • H5 新特性05

    SVG svg与canvas的区别 canvas绘制的是位图, svg绘制的是矢量图 canvas使用Ja...

  • Iconfont应用规范

    SVG图标绘制 一、图标绘制范围 绘制工具:AI、SKETCH 另外不建议使用PS,因为虽然PS也可以导出SVG,...

  • SVG

    内容整理自网上! 1、什么是SVG? 2、SVG的优势: 3、绘制矢量图形 参考文档:https://develo...

  • 使用svg绘制图形,实现渐变效果以及模糊效果

    一、SVG-绘制图形 二、SVG-渐变 1、 设置线性渐变步骤 2、 扇形渐变radialGradient,参考线...

  • iOS-加载SVG类型的图片并且实现可点击长按功能

    首先介绍下该项目实现了那些功能 svg图片数据解析 绘制svg图片 svg图片按照区域设置不同颜色绘制图片.png...

  • 前端数据可视化技术

    1、SVG SVG是一种XML语言,类似XHTML,可以用来绘制矢量图形。SVG可以通过定义必要的线和形状来创建一...

  • SVG用法

    常见引入svg的方法 .svg文件的常见结构: html页面中绘制svg的常见方法: 关于SVG的viewBox:...

  • SVG

    SVG 绘制长方形绘制圆形绘制椭圆 绘制直线 绘制折线 绘制多边形 ...

网友评论

    本文标题:SVG绘制1

    本文链接:https://www.haomeiwen.com/subject/amywthtx.html