Last time, a very studious fan asked if it was possible to make the moon a breathing light effect. Because I couldn't find a picture the size of the moon, I used stars instead. Today, this blogger used pure CSS and Flutter animation to implement it respectively. Remember to collect and learn If you want to test it, the original picture is at the end of the article Implementation principle: Pure CSS implementation, the code is as follows: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> <style> *{ margin: 0; padding: 0; } .wrap{ width: 300px; height: 300px; position: relative; margin: 0 auto; overflow: hidden; } .img1, .img2{ margin-top: 100px; width: 100px; position: absolute; } .img2{ -webkit-animation: breath 3s infinite ease-in-out alternate; animation: breath 3s infinite ease-in-out alternate; } @-webkit-keyframes breath { 0% {opacity: .2;}60% {opacity: 1;}to {opacity: .2;} } @keyframes breath { 0% {opacity: .2;}60% {opacity: 1;}to {opacity: .2;} } </style> </head> <body> <div class="wrap"> <img src="images/star1.jpg" alt="Basemap" class="img1"> <img src="images/star2.jpg" alt="Above" class="img2"> </div> </body> </html> This is the end of this article about how to achieve breathing light effects with pure CSS and Flutter (example code). For more information about how to achieve breathing light with CSS, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! |
<<: Comprehensive understanding of HTML basic structure
>>: Detailed explanation of Linux command unzip
Docker Learning https://www.cnblogs.com/poloyy/p/...
MySQL 5.7 MySQL command line client using command...
Table of contents 1. Background 2. Local custom i...
The specific code is as follows: <!DOCTYPE htm...
Table of contents Preface 1. Application componen...
This article introduces 5 ways to solve the 1px b...
Hash Join Hash Join does not require any indexes ...
Recently, I found that the company's server t...
Recently, due to the increase in buttons in the b...
Solving the problem Bootstrap is a CSS framework ...
In the interview, you should have experienced the...
Some command differences between versions: show i...
Table of contents A. Docker deployment of springb...
In the previous article https://www.jb51.net/arti...
Table of contents A brief overview of the replica...