1630900-1.html (618B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 6 .loader { 7 height: 480px; 8 } 9 10 rect { 11 fill: #000; 12 opacity: 0.5; 13 } 14 .anim { 15 animation: fade 10.5s infinite; 16 } 17 18 @keyframes fade { 19 0% { 20 opacity: 0.5; 21 } 22 50% { 23 opacity: 0.51; 24 } 25 100% { 26 opacity: 0.5; 27 } 28 } 29 30 </style> 31 </head> 32 <body> 33 <svg 34 class="loader" 35 x="0px" 36 y="0px" 37 viewBox="0 0 100 100" 38 > 39 <rect class="anim" x="0" y="0" width="100" height="100"/> 40 </svg> 41 </body> 42 </html>