Home  >  Article  >  Web Front-end  >  HTML5 practice-detailed explanation of SVG

HTML5 practice-detailed explanation of SVG

黄舟
黄舟Original
2017-03-21 15:57:481937browse

Baidu Encyclopedia:

SVG Scalable Vector Graphics Shape (Scalable Vector Graphics) is based on Extensible Markup Language (XML) , a graphics format used to describe two-dimensional vector graphics. SVG is a new two-dimensional vector graphics format developed by W3C and is also the network vector graphics standard in the specification. SVG strictly follows XML syntax and uses a descriptive language in text format to describe image content. Therefore, it is a vector graphics format that is independent of image resolution.

What is SVG?

SVG stands for Scalable Vector Graphics
SVG is used to define vector-based graphics for the web
SVG uses XML format to define graphics
SVG images do not lose graphic quality when they are enlarged or resized
SVG is a standard of the World Wide Web Consortium
SVG is integrated with W3C standards such as DOM and XSL

Canvas The difference between SVG and SVG:
SVG
SVG is a language that uses XML to describe 2D graphics.
 SVG is based on XML, which means every element in the SVG DOM is available. You can attach a JavaScript event handler to an element.
 In SVG, each drawn graphic is considered an object. If the properties of an SVG object change, the browser can automatically reproduce the graphic.
Features:
Not dependent on resolution
Support for event handlers
Best suited for applications with large rendering areas (such as Google Maps)
High complexity will slow down rendering (any Applications that excessively use DOM are not fast)
  Not suitable for game applications
 Canvas
  Canvas draws 2D graphics through JavaScript.
Canvas is rendered pixel by pixel.
 In canvas, once the graphic is drawn, it will no longer receive the browser's attention. If its position changes, the entire scene needs to be redrawn, including any objects that may have been covered by graphics.
Features:
Dependent on resolution
No support for event handlers
Weak text rendering capabilities
Ability to save result images in .png or .jpg format
Best for image-intensive applications Games where many objects are frequently redrawn

svg Example:


##

    <svg width="100%" height="100%"  >

        <circle cx="300" cy="60" r="50" stroke="#ff0" stroke-width="3" fill="red" />

    </svg>

The above is the detailed content of HTML5 practice-detailed explanation of SVG. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn