1400035.html (401B)
1 <!DOCTYPE html> 2 <html id="landing-page-home"> 3 <style> 4 @keyframes opacity { 5 from { opacity: 0; } 6 to { opacity: 1; } 7 } 8 #circle { 9 animation: opacity 1s infinite; 10 } 11 </style> 12 <svg width="100" height="100"> 13 <mask id="mask"> 14 <circle id="circle" cx="50" cy="50" r="50" fill="red"/> 15 </mask> 16 <rect class="rect" x="0" y="0" width="100" height="100" fill="blue" mask="url(#mask)"/> 17 </svg> 18 </html>