[THE LAST TIME] all knowledge points related to JS prototype

Preface The last time, I have learned [THE LAST TIME] has always been a series that I want to write, aiming to build up and review the front end. It is also to check and fill in the gaps and share the technology. Welcome to comment on Tucao. A series of articles are first listed in the public address [full stack front end]. The author's collec ...

Posted by the_manic_mouse on Wed, 30 Oct 2019 20:23:25 -0700

Learn about Vue - [how Vue implements responsive]

Write in the front: This article is a summary of personal daily work and study, which is convenient for later checking and filling in the missing, non authoritative information. Please bring your own thinking.Previous link: Learn about Vue - [how Vue implements responsive (I)].Learn about Vue - [how Vue implements responsive (II)].I've got some ...

Posted by Mchl on Wed, 30 Oct 2019 20:19:09 -0700

The life cycle of bean objects in Spring

Spring provides some interfaces to provide some methods, reflecting the life cycle of bean objects in the spring container.The specific process can be embodied as follows: Read permission class name - > build a class object - > use this class object to build an object through the no parameter constructor newInstance().          ...

Posted by fatherlyons on Wed, 30 Oct 2019 19:40:29 -0700

Element UI $notify custom html and click events

Recently, the company needs to query the background log in a circular way. There is a pop-up prompt for new data. The effect is similar to the $notify style. Then it steps on some pits. Here, it records and helps some friends. problem It can pop up, but the customized content cannot customize the e ...

Posted by amar3d on Wed, 30 Oct 2019 12:28:13 -0700

Write your own version of VUEX

Since VUEX can be used, there must be an install method inside, so we need to implement an install method first. When we use it, there is a this.$store attribute on each component, which contains the state, transitions, actions and getters in the state warehouse. Therefore, we need to mount a $store attribute on each component, specifically. As ...

Posted by einamiga on Wed, 30 Oct 2019 11:59:43 -0700

[Centos] Mysql modifies the directory of data files or solves some errors

Reference resources: https://blog.csdn.net/qq_21573899/article/details/78843075 [refer to this document for most of this article] https://www.cnblogs.com/Mchn/p/9984186.html Technological process: 1. Install Mysql normally. The default installation directory is / usr/local/mysql data file directo ...

Posted by jek1134 on Wed, 30 Oct 2019 09:52:51 -0700

9. Common layout of Flutter Stack cascade layout

I. use of stacked layout Horizontal layout and vertical layout are really easy to use, but there is a situation that cannot be completed, such as putting a picture, writing some words on the picture or putting it into a container. At this point, you can consider using Stack cascade layout. /** * Stacked layout */ class StackWidget extends Sta ...

Posted by rosegarden on Wed, 30 Oct 2019 07:09:43 -0700

WebRTC connection process introduction

Summary Because we are working on WebRTC related projects recently, in order to have a deeper understanding of WebRTC connection and transmission, we should write an article to introduce it. From the beginning Official documents of WebRTC Start with, and of course, the inside samples . Because the communication process has not been involved, w ...

Posted by Rother2005 on Wed, 30 Oct 2019 02:05:51 -0700

css in-depth front-end chapter before 2020, fully grasp the css animation [transform]

Written in front It will be 2020 soon. Do you know that my friends have learned css3 animation this year? Speaking of css animation is a very awkward thing. On the one hand, because the company uses less css animation, on the other hand, most developers are accustomed to using JavaScript to do animation, so many programmers are more excluded to ...

Posted by Koobazaur on Tue, 29 Oct 2019 21:04:25 -0700

Custom pull-down refresh rotation loading animation LoadingView

brief introduction When customizing a pull-down refresh, the progress is a LoadingView displayed according to the pull-down distance. An App Icon can be placed in the middle. Seeing is better than hearing. See the following figure for the specific effect: Analysis of implementation ideas The first s ...

Posted by viv on Tue, 29 Oct 2019 07:53:27 -0700