clip-path-animation-zoom.html (795B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <link rel="help" href="https://drafts.csswg.org/css-shapes-1/#basic-shape-interpolation"> 4 <link rel="match" href="clip-path-animation-zoom-ref.html"> 5 <style> 6 .container { 7 width: 80px; 8 height: 80px; 9 background-color: green; 10 zoom: 1.25; 11 animation: clippath 20s steps(2, jump-end) -9.999s; 12 } 13 14 @keyframes clippath { 15 0% { 16 clip-path: circle(50% at 50% 50%); 17 } 18 19 100% { 20 clip-path: circle(20% at 20% 20%); 21 } 22 } 23 </style> 24 <script src="/common/reftest-wait.js"></script> 25 <script src="../../../../web-animations/resources/timing-utils.js"></script> 26 27 <body> 28 <div class="container"></div> 29 30 <script> 31 waitForAnimationTime(document.getAnimations()[0], 1).then(takeScreenshot); 32 </script> 33 </body> 34 35 </html>