My screenshot plugin was used by Gitee
preface
Last Saturday, a group friend @ said that Gitee's feedback module added a screenshot function. I went to experience it and found that they used my plug-in 😁, This article will share this plug-in with you. All interested developers are welcome to read this article.
Plug in address and implementation principle
This plug-in is impleme ...
Posted by MockY on Tue, 30 Nov 2021 08:22:22 -0800
Familiar with JavaScript(day05) variables
catalogue
Objectives:
1. Variable overview
1.1 what are variables
2. Use of variables
2.1 declare case variables
2.2. Assignment
2.3. Initialization of variables
Case: use of variables:
3. Syntax extension of variables
3.1 updating variables
3.2 declaring multiple variables
3.3 special cases of declared variables
4. Naming s ...
Posted by newbienewbie on Tue, 30 Nov 2021 03:46:43 -0800
Click event of Hongmeng learning notes
Tips:
In the previous article, I shared how to jump to a page. Today we will continue to talk about click events in detail. Tomorrow we will continue to share double-click events and long-click events
1. Click event
There are four kinds of click events in HarmonyOS. Next, let's introduce the four kinds of click events and how to i ...
Posted by Nothadoth on Tue, 30 Nov 2021 03:44:34 -0800
What can I do to get important notices to everyone?
In some important information notification scenarios, users need to receive and pay attention to the information. The synchronous push of SMS + voice notification can solve this problem.
SMS notification + voice notification of the same content are sent synchronously
Push the voice notification of the same content synchronously while pushing ...
Posted by shubham.amola on Tue, 30 Nov 2021 01:32:50 -0800
react source code analysis 6.legacy mode and concurrent mode
react source code analysis 6.legacy mode and concurrent mode
Video Explanation (efficient learning): Click to learn
Course Directory:
1. Introduction and interview questions
2. Design concept of react
3.react source code architecture
4. Source directory structure and debugging
5. JSX & Core api
6.legacy and concurrent mode entry fun ...
Posted by katie77 on Mon, 29 Nov 2021 22:16:33 -0800
07_JavaScript data structure and algorithm bidirectional linked list
JavaScript data structure and algorithm (VII) bidirectional linked list
One way linked list and two-way linked list
Unidirectional linked list
You can only traverse from beginning to end or from end to end (generally from beginning to end).The linked list connection process is one-way. The implementation principle is that there is a referenc ...
Posted by foolguitardude on Mon, 29 Nov 2021 20:13:01 -0800
Development framework to be mastered in front-end development React
About React
Basic use of React
<div id="test"></div>
<script type="text/javascript" src="../js/react.development.js"></script>
<script type="text/javascript" src="../js/react-dom.development.js"></script>
<script type="text/javascript" src="../js/babel.min.js"></script>
<script type= ...
Posted by lajkonik86 on Mon, 29 Nov 2021 19:35:04 -0800
About arrays of functions
1, What is an array
1. An array is a set of ordered data 2. That is, we put some data in a box and arrange them in order. This thing is an array and a collection of data
3. We can see that all data types are divided into two categories:
a.Basic data types: (five categories) number/string/boolean/undefined/null
b.Complex data type:Ob ...
Posted by corsc on Mon, 29 Nov 2021 13:59:03 -0800
Promise in js
I. overview
Promise is a solution for asynchronous programming, which can replace the traditional solution - callback functions and events. ES6 unifies usage and provides native promise objects. As an object, promise has the following two characteristics: * (1) the state of the object is not affected by the outside world* (2) Once the state ch ...
Posted by lovelyvik293 on Mon, 29 Nov 2021 13:56:27 -0800
JavaScript basic syntax
Javascript basic syntax
- html: Markup Language
- JavaScript: programing language
preface
Development history of JavaScript (js)
1. 1994 Netscape, Inc(Netscape)Released Navigator Browser 0.9 This is the first mature web browsing in the world
It's a blockbuster. But this is a veritable browser--You can only browse the page, and the browser ...
Posted by protokol on Mon, 29 Nov 2021 13:12:48 -0800