Crowperjs practice and Chinese documents (self translation)
Crowperjs is a very powerful but simple image cutting tool. It can be configured very flexibly, supports the use of mobile phones, and supports modern browsers including IE9 and above. (the key is that it's easy to use and can be done in a few lines of code.)
Practice effect chart
As shown in the figure, the specified picture can be cropped. Yo ...
Posted by kingdm on Mon, 02 Dec 2019 14:04:27 +0100
JavaScript prototype and constructor notes
Sketch
This article is the author's understanding after reading the JavaScript object-oriented programming guide. It is just a sort of thinking on JavaScript prototype and multiple inheritance, not a basic knowledge explanation, suitable for understanding the prototype and inheritance, but not clear and thorough developers.I hope that you can c ...
Posted by comicrage on Mon, 02 Dec 2019 02:22:42 +0100
Design mode: memo mode
Usually, when the word document editor suddenly loses power to the computer, when we open it again, the original record status is still.
ps software history, we can use this record to restore the previous actions. These are the scenarios of memo mode
Memo mode is to provide a function to save the state of an object, so that the object can be re ...
Posted by frenchy373 on Sat, 30 Nov 2019 21:51:15 +0100
vue-02: common attributes of vue
vue-02: vue common properties
I. vue attribute set
1. Attribute set:
v-bind,v-if,v-else-if,v-else,v-for,v-html,v-model,v-on,v-once,v-pre,v-show,v-text
2. V-bind / html/text: - any
Picture introduction:
Introduction to use:
// dom attribute assignment
<li v-for="(item,key) in nameList" v-bind:key="key">
{{ ...
Posted by Rabea on Sat, 30 Nov 2019 07:09:39 +0100
Sequenize learning experience (ORM framework)
What is ORM?
Simply speaking, it is the encapsulation of SQL query statements, which enables us to operate the database in the OOP way and generate safe and maintainable SQL code gracefully. Intuitively, it is a mapping relationship between Model and SQL.
sequelize.query (original query)
By default, the function returns two parameters - an ar ...
Posted by Axeia on Fri, 29 Nov 2019 16:27:53 +0100
Spring BeanFactory lifecycle
Put a picture first:
Explain:
1. For the BeanFactory life cycle of spring, we can customize and implement the functions we need according to the creation of beans
Customized usage of container post processor:
@Component
public class MyInstantiationAwareBeanPostProcessor extends InstantiationAwareBeanPostProcessorAdapter {
/* ...
Posted by jkatcherny on Fri, 29 Nov 2019 15:58:52 +0100
Re learn java-9. Preliminary understanding of this keyword
Re learn java-9. Preliminary understanding of this keyword
Preliminary understanding of this keyword
Call properties of this class
Call ordinary methods of this class
Call constructor
Represents the current object
Preliminary understanding of this keyword
Call properties of this class
for instance:
class Emp {
priva ...
Posted by greatstar00 on Fri, 29 Nov 2019 00:26:35 +0100
web training knowledge point
I. animation display of jQuery
1. $(document).ready(function(){
2. $("#button1").click(function(){
3. $ ( "p").hide(500,function(){
4. alert("Hidden completion")
5. })
6. })
7. $("#button2").click(function(){
8. $( "p").show(200,function(){
9 ...
Posted by buddymoore on Thu, 28 Nov 2019 21:54:09 +0100
It's enough to read this article in Java multithreading (detailed summary of hematemesis)
Processes and threads
A process is a dynamic execution process of a program. It needs to go through a complete process from code loading, code execution to the completion of execution. This process is also a process from the generation, development to final extinction of the process itself. The multiprocess operating system can run multiple pro ...
Posted by jasondavis on Thu, 28 Nov 2019 08:43:26 +0100
javadoc generated by maven
1. Disorderly code
2 custom label
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven_javadoc_version}</version> <configuration> <aggregate>true</aggregate> <tags> & ...
Posted by void_function on Tue, 26 Nov 2019 21:35:05 +0100