Puppeter Usage Summary
Article catalogue
NodeJS environment configuration
MAC configuration
Installation mode 2:node version management: Linux configurationWindows configuration Development environment initialization
Basic environmentBaidu OCR dockingMy example code Docker deploymentLittle knowledgePuppeter syntaxError summaryMy blog
NodeJS en ...
Posted by unixmiah on Tue, 08 Mar 2022 06:18:36 +0100
Detailed steps of Ant Design Vue + vite topic switching (simple case)
Now more and more websites support theme switching, so do ours!
Here, we want to implement two examples, theme switching and night mode! Topic switching: Night mode:
1. Get ready to initialize a simple vite project
Install Ant Design Vue and less
yarn add ant-design-vue@next
yarn add less --save
Because Ant Design Vue is developed u ...
Posted by gmiyano on Tue, 08 Mar 2022 01:14:51 +0100
CSS - Crazy God notes
CSS:
1, Simple understanding
CSS selector, beautify web pages (beautify text, shadow, hyperlink, list beautification, gradient), box model, web page animation.
<style>
h1{
color:red;
}
</style>
Syntax: Selector{ Statement 1; Statement 2; } 3. Two ways of writing external styles Linked:
<link rel="stylesheet" href="css/ ...
Posted by trex005 on Mon, 07 Mar 2022 15:02:00 +0100
The mobile terminal is compatible with Baodian Daquan and specializes in treating all kinds of discomfort
"The ancients' knowledge is weak, but their Kung Fu can only be achieved when they are young and old."
**The mobile terminal is compatible with the encyclopedia and specializes in treating all kinds of discomfort, * * have you ever been distressed by various incompatibilities of the browser, especially the psoriasis of IE? This arti ...
Posted by y_oda2002 on Mon, 07 Mar 2022 02:22:34 +0100
36-JavaScript advanced ④ (regular expression)
1. Regular expression overview
1.1 what is a regular expression
Regular Expression is a pattern used to match character combinations in a string. In JavaScript, regular expressions are also objects.
The text boxes that match the regular name and number in the search form (for example, the text boxes that match the regular name and number ...
Posted by aalmos on Sun, 06 Mar 2022 15:11:19 +0100
Front end series - web side development of vue2 + Gaode map (use and introduction)
web side development of vue2 + Gaode map (use and introduction)
preface
Basics preparation
Personal developer registration of Gaode map
Gaode api website1. Click to register2. Enter the console after registration3. Create a new application4. Add Create vue2 your projectnpm introduces Gaode
Official documents1. Installation2. Ent ...
Posted by hoffmeister on Sat, 05 Mar 2022 21:47:30 +0100
[introduction to JSP] only know HTML but don't know JSP?
preface
Today, let's continue to summarize and learn the relevant knowledge of JSP. In the last article, we learned the basic introduction of Servlet. If you are still interested in Servlet, I suggest you go to the previous blog first and then come back.
Portal: [introduction to Servlet] an article is familiar to you that you have never heard ...
Posted by mckintosh18 on Sat, 05 Mar 2022 19:54:00 +0100
vue3 most complete routing tutorial
Introduction to routing. I've released the basic use of vue2 before. You can go there if you want to know vue2 routing tutorial
Let's start routing
Know Vue router
At present, the three popular front-end frameworks have their own routing implementation:
ngRouter of AngularReactRouter of ReactVue router of Vue Vue router is based on Routing ...
Posted by Gulsaes on Sat, 05 Mar 2022 18:03:08 +0100
[02] Flex layout - project properties
Project properties
The following describes the project properties. The container attribute is added to the container, and the item attribute is written on the item, just like the container attribute to ul and the item attribute to li. The following six properties are set on the project:
Order: used to determine the order of items. The default ...
Posted by Sianide on Wed, 02 Mar 2022 03:43:00 +0100
[applet] conditional rendering & list rendering
conditional rendering
You can use wx:if = "" to determine whether to render the code block
<view wx:if="{{flag}}">No rendering</view>
<view wx:if="flag">Render</view>
<view wx:if="">No rendering</view>
<view wx:if=" ">Render</view>
data: {
flag: false,
},
You can also use wx:e ...
Posted by nca on Mon, 28 Feb 2022 15:56:58 +0100