Method: 1. Use the "animation: name time" style to bind animation to the picture element; 2. Use "@keyframes name {0%{transform:scale(1,1);}100%{transform :scale(0,0);}}" statement can make the image shrink until it disappears.
The operating environment of this tutorial: Windows 10 system, CSS3&&HTML5 version, Dell G3 computer.
css3 How to make the picture shrink until it disappears
In css, you can use the animation attribute to bind animation to the picture element and specify the animation time .
The keyframes rules are then used to specify the action of element animation. The specific action is based on the transform attribute and the scale function to scale the element.
The example is as follows:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <style> img{ transform:scale(0,0); animation:fadenum 5s; } @keyframes fadenum{ 0%{transform:scale(1,1);} 100%{transform:scale(0,0);} } </style> </head> <body> <img src="1118.02.png" alt=""> </body> </html>
Output result:
css video tutorial)
The above is the detailed content of How to make images shrink until they disappear in css3. For more information, please follow other related articles on the PHP Chinese website!