vue.js project tiktok APP- eleventh: application of login and verification code

[warm tips]: if you want to know more about the actual combat content of this project, you can go to vue.js project tiktok APP- project planning Learn more about project planning. [project address] The project is managed by Git, and the final project will be released to GitHub. Interested partners can learn together to improve the project. Pro ...

Posted by Mad_T on Tue, 08 Feb 2022 16:47:56 +0100

Web learning route notes css3 animation

Day 8 css3 animation 1. Transform The following are the attribute values of transform translate(x,y) defines a 2D transformation that moves elements along the X and Y axes. That is, translate to the x or y axis With one parameter, the x-axis is translated and the y-axis is not moved translateX(n) defines a 2D transformation that move ...

Posted by 9mm on Tue, 08 Feb 2022 04:07:36 +0100

Front end learning day21&day22: forms and tables

1. Form ① Function of form Collect the information of the client. When the visitor enters the information in the form and clicks the submit button, the information will be sent to the server, and the server script or application will process the corresponding information. When the server responds, it will return the requested data to the clie ...

Posted by noisyscanner on Tue, 08 Feb 2022 03:36:51 +0100

GUI programming --- Snake game development

① First knowledge theory Frame: the time slice is small enough = "is the animation, 1 second 30 frames. Connect is animation, open is static picture! Keyboard monitor Timer timer ② Game development ideas (define data, draw a panel, and listen for events (keyboard / event)) 1. First of all, a game main startup class, StartGame class, in ...

Posted by MikeUK on Tue, 08 Feb 2022 00:00:51 +0100

CSS section - Section 8 positioning

Location 1 Why do I need to locate? 1. What if I want an element to move freely on the page or in a box and press down on another box? 2. What if we want a box to stay fixed while we scroll the page? (Side navigation bar) The above effect, standard stream or floating can not be achieved quickly, so positioning is needed to achieve it. So: Floa ...

Posted by walnoot on Mon, 07 Feb 2022 18:21:38 +0100

013CSS Box Model

1, Introduction The so-called box model is to treat the layout elements in HTML pages as a rectangular box, that is, a container for content. CSS box model is essentially a box that encapsulates the surrounding HTML elements, including: border, outer margin, inner margin, and actual content 1. border Border can set the border of the elem ...

Posted by omerta on Sat, 05 Feb 2022 10:44:06 +0100

HTML5+CSS3 note 01 (for personal use)

vscode download address First acquaintance with web Composition of WEB standards: constitutelanguageexplainstructureHTMLPage elements and contentperformanceCSSAppearance and location of web page elements (page elements)behaviorJavaScriptDefinition of web page model and page interaction Chapter 1 getting to know HTML5 1 label <!DOCT ...

Posted by phpnwx on Fri, 04 Feb 2022 10:34:13 +0100

Comprehensive summary of CSS knowledge -- Quick Reference Manual

CSS brief introduction p { color:red; text-align:center; } Do not leave spaces between attribute values and units CSS comments start with / * and end with / id selector #para1 { text-align:center; color:red; } id and class should not start with numbers class selector .center {text-align:center;} Specifies tha ...

Posted by theBond on Thu, 03 Feb 2022 12:30:13 +0100

Wechat applet like function

Recently, I was working on a simple posting applet, which involves the like function. At first, I thought it was very simple. Later, I found that the difficulty lies in how to record the user's like status of the article, so as to avoid the failure of the like status when I open it next time. Let's start with the renderings: After Baidu for h ...

Posted by Stickybomb on Thu, 03 Feb 2022 00:32:19 +0100

Rotation diagram of mobile terminal (written in native JS)

Rotation diagram of mobile terminal (written in native JS) 1, Realize the following functions: Can automatically play pictures You can drag your finger to play the carousel 2, Implementation steps Auto play function: ① Start timer ② The translate of CSS3 can be used to move the mobile terminal. Note that you can move without adding us ...

Posted by SueHubert on Wed, 02 Feb 2022 09:15:06 +0100