1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <title>呼吸灯</title> <style type="text/css"> .breath { width: 300px; height: 300px; border-radius: 50%; opacity: 0.1; overflow: hidden; background: #ff3; margin: 25% auto; animation-name: breath; animation-duration: 3s; animation-timing-function: ease-in-out; animation-iteration-count: infinite; } @keyframes breath { from { opacity: 0.1; } 50% { opacity: 0.5; } to { opacity: 0.1; } } </style> </head> <body> <div class="breath" title="呼吸灯"></div> </body> </html> |