1. CSS3 animation ☺CSS3 animations are much easier and perform better than dynamically changing element styles via JavaScript. There are three animation properties in CSS3: .transform-class { transform: rotate(30deg) scale(2,3); } 1.1. transform-origin base point All transformations are based on the base point, which defaults to the center point of the element. Usage: .transform-class { transform-origin: (left, bottom); } 1.2. rotate rotates the element by the specified angle. If it is a positive number, it rotates clockwise, and if it is a negative number, it rotates counterclockwise. .transform-rotate { transform: rotate(30deg); } 1.3. Scale .transform-scale { transform: scale(2,1.5); } .transform-scaleX { transform: scaleX(2); } .transform-scaleY { transform: scaleY(1.5); } 1.4. Translate .transform-translate { transform: translate(400px, 20px); } .transform-translateX { transform: translateX(300px); } .transform-translateY { transform: translateY(20px); } 1.5. Skew distortion .transform-skew { transform: skew(30deg, 10deg); } .transform-skewX { transform: skewX(30deg); } .transform-skewY { transform: skewY(10deg); } 1.6, matrix
3. animation
example: @keyframes animationName { from { properties: value; } percentage properties: value; } to { properties: value; } } //or @keyframes animationName { 0% { properties: value; } percentage properties: value; } 100% { properties: value; } } 2. New Features of H5
Form controls: calendar, date, time, email, url, search. ( This is the end of this article about CSS3 animation and HTML5 new features. For more relevant CSS3 animation and HTML5 new features content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! |
<<: Looping methods and various traversal methods in js
>>: Sample code for implementing multi-application deployment using tomcat+nginx
When there is a lot of data to be displayed, the ...
This article mainly introduces the Mysql backup m...
Table of contents 1. What is an event? 2. How to ...
1. Transaction characteristics (ACID) (1) Atomici...
bmi Voyager Pitchfork Ulster Grocer Chow True/Sla...
This question originated from a message on Nugget...
Table of contents Preface Virtual DOM What is Vir...
Table of contents Preface Actual Combat 1. No loc...
The advantages of this solution are simplicity an...
The fastest way to experience the latest version ...
The first type: full CSS control, layer floating ...
1. Install libfastcommon-1.0.43. The installation...
This article shares the specific code of jQuery t...
Table of contents Vue recursive component drag ev...
!DOCTYPE Specifies the Document Type Definition (...