Record a grid layout practical application sharing meeting

Record a grid layout practical application sharing meeting Recorded the technology sharing meeting in the group. For students with the same needs, please refer to it Sharing the whole process, about 45 minutes The final drawing is as follows: ↓ 1, Can it be used in engineering? (compatibility) The old growth talk, but also a decisive one, ...

Added by kevingarnett2000 on Thu, 18 Jun 2020 13:06:09 +0300

20 regular expressions are often used in front-end development.

1. Verify password strength: the strength of password must include the combination of upper and lower case letters and numbers. Special characters cannot be used, and the length is between 8 and 10 ^(?=.*\\d)(?=.*[a-z])(?=.*[A-Z]).{8,10}$ 2. Check Chinese: the string can only be Chinese ^[\\u4e00-\\u9fa5]{0,}$ 3 ...

Added by sols on Mon, 04 May 2020 03:23:55 +0300

table td displays two lines of text, with End, incompatible solution in 360 compatibility mode.

table td displays two lines of text, with End, incompatible solution in 360 compatibility mode. This is a div that includes table. <div style="margin-left: -16px;width:850px;"> <table class="right-table" id="tableT" border="0" style="margin-bottom:-1px;width:850px;" cellspacing="0" cellpadding="0" ...

Added by fatmikey on Sat, 02 May 2020 04:45:58 +0300

Picture Processing of.net core and Generation and Resolution of Two-Dimensional Code

It has been more than ten years since I wrote the code.   From html to css to javascript to vbscript to c#, from interest to occupation, life is always lost and surprising.   Most of the time, I don't start because I know where to go, I just know I can't stay anymore, that's all.After being hit by the wind and rain, there will be a lot of u ...

Added by theqase on Fri, 17 Apr 2020 23:57:07 +0300

JS Component Series - JsPlumb Production Flowchart and Detailed Relevant Effects

Top Foreword: The previous project used JsPlumb, a drag-and-drop flowchart technology from the Web, which is not really difficult, but it feels good to share some flash-like effects made with HTML in the project. Jsplumb website: https://jsplumbtoolkit.com GitHub: https://github.com/sporritt/jsplumb/ 1. Effect Diagram Display ...

Added by RTT on Wed, 15 Apr 2020 03:55:48 +0300

Using workbox to implement PWA in webpack

Using workbox to implement PWA in webpack Explain Important document version "workbox-webpack-plugin": "^3.0.0" "webpack": "^3.11.0" Webpack provides workbox plug-in workbox webpack plugin Used in webpack Use in production version configuration 1. Import in the entry html template <!DOCTYPE html& ...

Added by Telemachus on Sat, 04 Apr 2020 11:07:19 +0300

Vue shopping cart instance

This is the rendering. It seems very simple. Have you been writing Jquery code for a long time, always thinking about DOM operation? I haven't switched over for a long time. Finally, Vue's attributes are used for control, and the function of multiple attribute selection is realized Directly on the source code! index.html <!DOCTYPE htm ...

Added by safetguy on Thu, 02 Apr 2020 14:18:20 +0300

vue custom panel instruction

vue custom panel instruction In the development of the project, many panels with mask layer are used. These panels are rigid, fixed in size, fixed in position, unable to minimize and so on. I would like to use a vue custom instruction to solve these problems. For any panel, just add a v-panel instruction to the panel e ...

Added by mudi on Thu, 02 Apr 2020 13:40:58 +0300

Go back to CSS (6)

Using CSS to style lists Use background image as bullet Generally speaking, do not use the list style image attribute. Use background. Different browsers have different parsing for the previous attributes, and it is not easy to control the location of this image. Create vertical and horizontal navigation bars Horizont ...

Added by Mark W on Wed, 01 Apr 2020 12:51:07 +0300

[code segment] set the width and height of iframe label automatically according to the sub page

[code segment] set the width and height of iframe label automatically according to the sub page This code function can automatically modify the width and height of iframe label in the parent page according to the width and height of the child page loaded by iframe to fully display the child page To configure T ...

Added by Wo0tHigh on Tue, 31 Mar 2020 13:38:49 +0300