uniapp defines several ways of animation
The premise of this chapter is that everyone knows the basic properties of animation, such asanimation-name, animation-duration, animation-timing-function, animation-delay, animation-iteration-count, and animation-direction properties.learn more animation relevant content.Now make an animation effect of shaking left and right, the effect is as ...
Posted by saltious on Fri, 03 Feb 2023 14:21:35 +0300
Redis quick start
Table of contents
1. Get to know Redis first
1.1. Understanding NoSQL
1.1.1. Structured and unstructured
1.1.2. Association and non-association
1.1.3. Query method
1.1.4. Transactions
1.1.5. Summary
1.2. Understanding Redis
1.3. Install Redis
1.3.1. Dependent library
1.3.2. Upload the installation package and decompress it
1.3.3. St ...
Posted by Zssz on Mon, 06 Feb 2023 01:08:40 +0300
Basic Graph Theory and Search
DFS (Depth First Search)
basic concept
Depth First Search An algorithm for traversing or searching a tree or graph. Traverse the nodes of the tree along the depth of the tree, searching the branches of the tree as deep as possible. When the edge of node v has been explored or the node does not meet the conditions during the search, the se ...
Posted by dennismcdougall on Sun, 05 Feb 2023 07:28:39 +0300
ATT&CK Combat Series-Red Team Combat
The second round of the Red Sun Shooting Range, I am not very proficient in the intranet, so I used it to record the process.Shooting range download addresshttp://vulnstack.qiyuanxuetang.net/vuln/detail/3/But the Baidu cloud link seems to be G, and a wave of online searches found my own Baidu network disk.Link: https://pan.baidu.com/s/16G9Tim03 ...
Posted by Flare Boards on Mon, 06 Feb 2023 12:41:17 +0300
Introduction to BOM and DOM of js
Bom Browser Object Model
BOM is the abbreviation mode of Borwser Object Model, which provides a whole set of methods for operating the browser, and can access and operate the browser window. Using the BOM, developers can move windows, change text in the status bar, and perform other actions not directly related to page content. The Browser Obj ...
Posted by jwright on Mon, 06 Feb 2023 23:32:38 +0300
How to realize the front-end novice guidance function?
Hello everyone, I am Ruochuan. I have been organizing for nearly a year Source code sharing activities , those who are interested can Click here to scan the code and add me on WeChat lxchuan12 Participate, everyone will learn about 200 lines of source code together every week, and make progress together. At the same time, it is highly recommend ...
Posted by danleighton on Fri, 03 Feb 2023 11:42:58 +0300
Basic SELECT statement and display table structure
Article directoryBasic SELECT statementSELECT...SELECT ... FROMcolumn aliasremove duplicate rowsNull values ​​participate in operationsEmphasisQuery constants (add constant fields to queries at the same time)show table structurefilter datapractice questionsBasic SELECT statementSELECT...SELECT 1+1, 2+2;# Writing this directly is equivalent to t ...
Posted by jsinker on Thu, 02 Feb 2023 10:59:00 +0300