[SVG] Simple introduce for SVG

Posted Answer1215

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[SVG] Simple introduce for SVG相关的知识,希望对你有一定的参考价值。

Just like create html page, you can create a svg tag by:

<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" height="340" width="340" style="background-color:#F6F7F7;">

</svg>

 

Inside svg,

  • x,y:  control the position of element
  • fill: control the color of element
  • height, width: you know

 

Simple example by rect tag:

<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" height="340" width="340" style="background-color:#F6F7F7;">
    <!-- Chimney -->
    <rect height="21" width="14" fill="#FBF6A7" x="98" y="127"/>
    <rect height="4" width="20" fill="#E04E27" x="95" y="123"/>

    <!-- House -->
    <rect height="84" width="162" fill="#FBF6A7" x="90" y="198"/>
    <rect height="56" width="184" fill="#E04E27" x="80" y="148"/>

    <!-- Door -->
    <rect height="60" width="36" fill="#E04E27" x="153" y="222"/>
    <!-- Door handler -->
    <rect height="8" width="2" fill="#FBF6A7" x="183" y="252"/>
</svg>

 

技术分享

以上是关于[SVG] Simple introduce for SVG的主要内容,如果未能解决你的问题,请参考以下文章

使用 css 更改颜色 svg 文件

用java导出excel的时候,导出的excel表格里出现Error 404: SRVE0190E: File not fo

安装使用 ADALM2000模块

svg make a face

轻量级、易于使用的jQuery插件用于动画化SVG路径

Angular 4+:如何使用 svg 文件中的图标