How to use icon gracefully in Vue project
Before we begin to understand how to standardize the use of icon in Vue projects, we need to understand some of the most basic knowledge points of icon - sprite technology.
Sprite Technology
Currently, SVG sprite's best practice is to use the symbol element. What is the symbol element? In simple translation, it means "symbol". Howev ...
Posted by Arrow on Tue, 08 Mar 2022 00:15:35 +0100
CSS & SVG foreignObject to realize text hollowed out wave animation
I read an article before: CSS tricks | clever use of mixed mode to achieve text hollowed out wave effect , it is very ingenious to integrate CSS animation into the text, mainly using the mixed mode. The effect is like thisWhy use mixed mode? Because this is text and it is impossible to put HTML nodes inside the text, another method will be intr ...
Posted by SQL Advanced on Mon, 28 Feb 2022 05:46:12 +0100
Small changes in Logo, big differences in mood, SVG vector animation format website Logo picture production and practice tutorial (Python 3)
The original text is reproduced from "Liu Yue's technology blog" https://v3u.cn/a_id_207Once upon a time, SVG(Scalable Vector Graphics) vector animation was known as a technology cursed by browsers because of poor hardware support (IE) and endless compatibility tuning (Safari). However, today in 2022, everything is different. It is th ...
Posted by richierich on Wed, 23 Feb 2022 17:06:16 +0100
Getting Started with D3: Chapter 3
Chapter 3. Scales, Axes and Lines
This chapter introduces the processing of various scales, coordinate axes and the use of broken lines. As mentioned at the beginning, a basic problem to consider when drawing visual charts is how to present the actual data values on the page in an appropriate proportion of pixel size and color. D3 has done a ...
Posted by OMorchoe on Mon, 31 Jan 2022 02:21:05 +0100
Initial knowledge of SVG - drawing basic graphics
Scalable vector image
Simple understanding
Used to describe two - dimensional vector graphics, XML - based markup language
What is vector graphics
The figures described by lines and curves are composed of some points, lines, rectangles, polygons, circles and arcs, which are calculated by mathematical formulas and have the characteristics of ...
Posted by frikus on Sun, 02 Jan 2022 20:38:35 +0100
[D3.js learning record] - D3 Basic idea of JS data binding
Data binding
DataJoin
Essence: data is bound with entities, that is, after binding, each entity has its own semantics. For example, in demo2, if the region field in the data is bound to the entity, the entity represents the region
Eg:
The number of people per country is bound to the length of the rectangleThe proportion of people infected b ...
Posted by Jorge on Sat, 01 Jan 2022 05:40:04 +0100
Amazing!! CSS can also achieve Aurora?
I finished this article last time-- Skillfully using gradient to realize high-level full background light animation After that, the comments below the article have students' comments. Can you use CSS to realize Aurora?Like this:emmm, it's a little difficult. However, I have also tried recently. Although it is impossible to simulate such a real ...
Posted by TLawrence on Fri, 24 Dec 2021 06:47:03 +0100
SVG document structure
Chapter 5. Document Structure
As we mentioned by chance, SVG allows you to separate the structure of a document from its representation. In this chapter, we will compare and contrast the two, discuss the appearance of the document in more detail, and then show some SVG elements that can make the document structure clearer, easier to read and e ...
Posted by JimChuD on Mon, 11 Oct 2021 05:52:46 +0200
SVG basic graphics
4.BasicShapes
Once the coordinate system is established in the < SVG > tag, you can start drawing. This chapter will introduce some basic shapes: lines, rectangles, Polygons, circles, and ellipses. You can use these basic shapes to create the main elements of most paintings.
Lines
SVG allows you to draw a line through the < line > ...
Posted by kanchan on Mon, 11 Oct 2021 05:35:05 +0200