美文网首页
review html5 01:svg

review html5 01:svg

作者: 蝴蝶结199007 | 来源:发表于2017-04-05 23:53 被阅读15次

(1)知识点

  • (1.1)什么是svg
  • (1.2)svg的优势
  • (1.3)svg格式(<svg></svg>)

(2)细化

(2.1)什么是svg

  • SVG 指可伸缩矢量图形 (Scalable Vector Graphics)
  • SVG 用于定义用于网络的基于矢量的图形
  • SVG 使用 XML 格式定义图形
  • SVG 图像在放大或改变尺寸的情况下其图形质量不会有损失
  • SVG 是万维网联盟的标准

(2.2)svg的优势

与其他图像格式相比(比如 JPEG 和 GIF),使用 SVG 的优势在于:

  • SVG 图像可通过文本编辑器来创建和修改
  • SVG 图像可被搜索、索引、脚本化或压缩
  • SVG 是可伸缩的
  • SVG 图像可在任何的分辨率下被高质量地打印
  • SVG 可在图像质量不下降的情况下被放大

(3)实践

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title>复习html5 svg</title>
    </head>
    
    <body>

        <svg width="140" height="170">
            <title>猫咪</title>
            <desc>使用svg画了一个猫咪</desc>
            <!--脸 
                cx:center x 中心点x轴距离,距离左边框
                cy:center y 中心点y轴距离,距离上边框
                r:半径
                stroke:边框颜色
                fill:填充的颜色
            -->
            <circle cx="70" cy="95" r="50" style="stroke: red; fill: none;" />
            <circle cx="55" cy="80" r="5" style="stroke: black; fill: #339933" />
            <circle cx="85" cy="80" r="5" style="stroke: black; fill: #339933" />
            
            <g id="whiskers">
                <link x1="75" y1="95" x2="135" y2="85" style="stroke: black;" />
                <link x1="75" y1="95" x2="135" y2="105" style="stroke: black;" />
            </g>
            <use xlink:href="#whiskers" transform="scale(-1,1) translate(-140,0)" />
            
            <!-- 耳朵 -->
            <polyline points="108 62, 90 10,70 45, 50 10, 32 62" style="stroke: black; fill: none;" />
            <!-- 嘴 -->
            <polyline points="35 110, 45 120, 95 120, 105 110" style="stroke: black; fill: none;" />
            <!-- 鼻子 -->
            <path d="M 75 90 L 65 90 A 5 10 0 0 0 75 90" style="stroke: black; fill: #ffcccc;" />
            <text x="60" y="165" style="font-family:sans-serif; font-size:14pt;">Cat</text>
        </svg>
    </body>

</html>

相关文章

  • review html5 01:svg

    (1)知识点 (1.1)什么是svg (1.2)svg的优势 (1.3)svg格式( ) (2)细化 (2.1)...

  • HTML5 内联 SVG

    HTML5 支持内联 SVG。 什么是SVG? SVG 指可伸缩矢量图形 (Scalable Vector Gra...

  • HTML5 内联 SVG

    HTML5 支持内联 SVG。 什么是SVG? SVG 指可伸缩矢量图形 (Scalable Vector Gra...

  • HTML5 内联 SVG

    HTML5支持内联SVG。 什么是SVG? SVG指可伸缩矢量图像(Scalable Vector Graphic...

  • HTML5学习--SVG全攻略(进阶篇)

    ****此篇为svg的进阶介绍篇,了解更多关于svg的介绍请看 HTML5学习--SVG全攻略(基础篇)*** *...

  • SVG

    @(HTML5)[canvas与SVG] [TOC] 十一 、SVG HTML体系中,最常用的绘制矢量图的技术是S...

  • 扣丁学堂简述什么是HTML5内联SVG及SVG的优势

    HTML5内联SVG不知道有多少对HTML5感兴趣的小伙伴知道,SVG的优势又有多少小伙伴了解呢?本篇文章跟扣丁学...

  • SVG的坐标和转换

    详情>>>[https://www.w3cplus.com/html5/svg-coordinate-system...

  • H5里的svg

    一、什么是SVG SVG是一种使用XML技术描述二维图形的语言,svg是一种矢量图,它并不属于HTML5专有内容,...

  • canvas

    @(HTML5)[canvas与SVG] [TOC] 十 、canvas canvas的基本用法 canvas是H...

网友评论

      本文标题:review html5 01:svg

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