I just found out that CSS3 is so useful... CSS3 Box ModelIn CSS3, the box model can be specified through box-sizing. There are two values, which can be specified as content-box and border-box. This changes the way of calculating the box size.
* { margin: 0; padding: 0; box-sizing: border-box; } a. CSS3 filterThe filter CSS property applies graphical effects such as blur or color shift to an element. filter: function(); For example: filter: blur(5px); /*blur processing, the larger the number, the blurrier it is*/ b. CSS3 calc functioncalc() can perform some calculations when declaring CSS property values width: calc(100%-80px); c. CSS3 transitionsTransition animation: Repeat one state and gradually transition to another state transition: The time taken by the property to be transitioned and when the motion curve starts; Often used with /* :hover */, for example: transition: width .5s, height .5s; /*Multiple attributes are separated by commas or all*/ /**Whoever does the transition will be added**/
2D TransformationTransformation can achieve effects such as displacement, rotation, and scaling of elements.
2D Coordinate System1. TranslateChange the position of an element on the page, similar to positioning //Move the box position: locate the outer margin of the box 2D transformation movement transform: translate(x, y); transform:translateX(); transform:translateY();
2. Rotate: rotate2D rotation refers to rotating an element clockwise or counterclockwise in a two-dimensional plane. transform:rotate(degrees) //unit: deg
3. Center point transform-orgintransform-origin:xy;
4. Scaletransform:scale(x, y); xy is separated by commas transform(i, j): the width is enlarged by i times, and the height is enlarged by j times; only one parameter is written, and the second parameter can set the conversion center point scaling like the first parameter. The default scaling is based on the center point, and it does not affect other boxes 5. Comprehensive writing of 2D conversiona. Use multiple transformations at the same time, format: transform: translate() rotate() scale(), etc.; b. The order will affect the effect of the conversion (rotating first will change the direction of the coordinate axis) c. If there are displacement and other attributes at the same time, put the displacement first CSS3 AnimationAnimation can precisely control one or a group of animations by setting multiple nodes. It is often used to achieve complex animation effects, which can achieve more changes, more control, continuous automatic playback and other effects. 1. Basic use of animation
a. Define animation using keyframes (similar to defining selectors)You can add multiple animations to an element by separating them with commas. @keyframes animation name { 0% { width:100px; } 100% { width:200px; } }
b. Elements using animationdiv { animation: name; animation-duration: Duration: } 2. Common properties of animation3. Animation shorthand propertiesanimation: animation name, duration, motion curve, when to start, number of times to play, whether the animation is in the opposite direction, start or end status animation: first 5s linear 2s infinite alternate
Speed curve detailsanimation-timing-function: specifies the speed curve of the animation, the default is "ease" 3D Conversion
1. Displacement translate3d
2. Perspective (px)Perspective is written on the parent box of the observed element (larger when near and smaller when far) d: It is the viewing distance, which is the distance from the human eye to the screen. z: It is the z-axis, the distance of the object from the screen. The larger the z-axis (positive value), the larger the object we see. 3. Rotate rotate3drotate3d allows the element to rotate along the x-axis, y-axis, z-axis or custom axis in a three-dimensional plane Element rotation direction: left-hand rule x
y
transform:rotate3d(x,y,z,deg): Rotate along the defined axis by an angle of deg xyz represents the vector of the rotation axis, and the last one indicates the angle of rotation 4. 3D rendering transform-style (important)
This concludes this article about example codes for CSS3 transition, rotation, perspective, 2d, 3d animation and other effects. For more relevant CSS3 rotation, perspective, 2d, 3d animation content, please search previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future! |
<<: In-depth study of MySQL multi-version concurrency control MVCC
>>: Bootstrap 3.0 study notes CSS related supplement
This article records the specific method of insta...
Table of contents 1. Installation and introductio...
I just happened to encounter this small requireme...
In website construction, you will always encounter...
First, let's take a look at my basic developm...
Table of contents 1. Project Construction 2. Vue3...
method: By desc: Neither can be achieved: Method ...
Table of contents Preface React Functional Compon...
Table of contents 1. Dockerfile 2. pom configurat...
1. Background We do some internal training from t...
Table of contents 1. Operators Summarize 1. Opera...
Recently, I need to implement a cascading selecti...
Table of contents Create a simple springboot proj...
Scary, isn't it! Translation in the picture: ...
When we use Vue for development, we may encounter...