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
When installing a virtual machine, a prompt appea...
After clicking the a tag in the page, you want to ...
XML/HTML CodeCopy content to clipboard <!DOCTY...
cause I once set up WordPress on Vultr, but for w...
Table of contents 1. Download nodejs 2. Double-cl...
Table of contents 1. Problem scenario 2. Cause An...
Sometimes you just want to test an app but don’t ...
1. Necessity of Tuning I have always been reluct...
SVG (Scalable Vector Graphics) is an image format...
Table of contents 1. What is a database? 2. Class...
Table of contents Early creation method Factory P...
1: Statement order of grouping function 1 SELECT ...
1. To optimize the query, try to avoid full table...
Here are 10 tips on how to design better-usable w...
Heart Attributes opacity: .999 creates a stacking...