我是靠谱客的博主 含蓄毛巾,最近开发中收集的这篇文章主要介绍SVG制作简单图形的实例介绍,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

圆形 circle

<svg width="200" height="200" >
    <circle 
        cx="100" 
        cy="100" 
        r="80" 
        stroke="green" 
        stroke-width="4" 
        fill="none"/>
</svg>
登录后复制

矩形 rect

<svg>
    <rect 
        x="10" 
        y="10" 
        rx="5" 
        ry="5" 
        width="150" 
        height="100" 
        stroke="red" 
        fill="none">
    </rect>
</svg>
登录后复制

椭圆 ellipse

<svg>
    <ellipse 
        cx="400" 
        cy="60" 
        rx="70" 
        ry="50" 
        stroke="red" 
        fill="none">
    </ellipse>
</svg>
登录后复制

线 line

<svg>
    <line 
        x1="10" 
        y1="120" 
        x2="160" 
        y2="220" 
        stroke="red">
    </line>
</svg>
登录后复制
登录后复制

折线 polyline

<svg>
    <line 
        x1="10" 
        y1="120" 
        x2="160" 
        y2="220" 
        stroke="red">
    </line>
</svg>
登录后复制
登录后复制

多边形 polygon

<svg>
    <polygon 
        points="250 120 
                300 220
                200 220"
        stroke="red"
        stroke-width="5"
        fill="yellow"
        transform="translate(150 0)">
    </polygon>
</svg>
登录后复制

路径 path

可用于路径数据的命令
M = moveto
L = lineto
H = horizontal lineto
V = vertical lineto
C = curveto
S = smooth curveto
Q = quadratic Belzier curve
T = smooth quadratic Belzier curveto
A = elliptical Arc
Z = closepath

<svg>
    <path 
    d="M250 150 L150 350 L350 350 Z" />
</svg>
登录后复制

以上就是SVG制作简单图形的实例介绍的详细内容,更多请关注靠谱客其它相关文章!

最后

以上就是含蓄毛巾为你收集整理的SVG制作简单图形的实例介绍的全部内容,希望文章能够帮你解决SVG制作简单图形的实例介绍所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(64)

评论列表共有 0 条评论

立即
投稿
返回
顶部