Vue learning notes (components, animation)

catalogue 1, Define Vue components 1.1 three methods of global component definition 1.2 using component to define private components II. data in components III. component switching 4, Component value transfer 4.1 value transfer from parent component to child component 4.2 the child component passes the value to the parent component th ...

Posted by cirko on Tue, 22 Feb 2022 12:51:58 +0100

Phishing practice 2 -- combined email web page

Add the previous article, a word binding idea Combine front-end pages for fishing Flash fishing xss_ Flash fishing full set of source code Self flash fishing another set of source code 1.1 combined flash fishing pop-up version The source code from tools I feel that the masters are very strong Direct download pop-up Throw the js file of the ...

Posted by anups on Tue, 22 Feb 2022 12:15:43 +0100

Virtual Dom and diff algorithm

1. What exactly is JSX When you use react, you will write JSX. What is JSX? It is an extension of Javascript syntax. React uses it to describe what the user interface looks like. Although it looks very much like HTML, it is Javascript. Babel will compile JSX into the React API before the react code is executed <div className="container"&gt ...

Posted by uluru75 on Tue, 22 Feb 2022 10:24:46 +0100

Please, use three JS make 2D pictures have 3D effect, cool, okay 💥

It is only used for secondary publication, research, publication and other illegal materials. It is only used for secondary publication, research, profit-making and other illegal materials.backgroundWhen I visited sketchfab, I saw many examples of two-dimensional plane to three-dimensional model, so I followed their example and used three JS + ...

Posted by n14charlie on Tue, 22 Feb 2022 03:03:48 +0100

Basic knowledge of JavaScript Chapter 6 - functions (including a large number of case studies)

preface❤️ The rainbow after the rain is more beautiful, and the suffering life is more brilliant ❤️ 1, JavaScript function (1) Concept of function In JS, many codes with the same or similar functions may be defined, which may need to be reused. Although the for loop statement can also realize some simple repetitive operations, it has lim ...

Posted by Birch on Tue, 22 Feb 2022 02:06:26 +0100

Introduction to new features of JavaScript ES6

brief introduction The full name of ES is ECMAScript, which is the specification of scripting language, and JavaScript is an implementation of ES, so the new feature of ES can also be called the new feature of JavaScript. Why learn: Simple grammar and rich functions.Using the framework to develop applications, such as front-end development u ...

Posted by jomofee on Tue, 22 Feb 2022 01:53:14 +0100

Interpretation of Vue source code -- Vue initialization process

When learning becomes a habit, knowledge becomes common sense. Thank you for your likes, collections and comments.The new video and articles will be sent to WeChat official account for the first time. Li YongningThe article has been included in github warehouse liyongning/blog , welcome to Watch and Star.targetDeeply understand the initializati ...

Posted by JeanieTallis on Tue, 22 Feb 2022 01:43:36 +0100

Interpretation of Vue source code -- Vue initialization process

When learning becomes a habit, knowledge becomes common sense. Thank you for your likes, collections and comments. The new video and articles will be sent to WeChat official account for the first time. Li Yongning The article has been included in github warehouse liyongning/blog , welcome to Watch and Star. target Deeply understand the init ...

Posted by jimwp on Tue, 22 Feb 2022 01:37:30 +0100

Redux status management

redux Chinese document  https://www.redux.org.cn/ redux official website https://redux.js.org/ The so-called state management is to manage the data in the application. Concept: almost all projects with chaotic data flow management can't go online. A good project must have very good data flow management. How to use Redux? Remember "thre ...

Posted by psycovic23 on Mon, 21 Feb 2022 15:17:03 +0100

Three attributes of components: state, props and refs

1, Three attributes of component instance (1)state View status: there is a property on the written component instance, state, which represents the status of the component. Next, we write a stateful component: <body> <div id="test"></div> <script type="text/babel"> // Create component class ...

Posted by misxa on Mon, 21 Feb 2022 14:27:37 +0100