clip-path-on-fixed-position-scroll-ref.html (220B)
1 <!DOCTYPE html> 2 <style> 3 .ref { 4 height: 100px; 5 width: 100px; 6 background: green; 7 } 8 </style> 9 <div style="height: 800px"></div> 10 <div class="ref"></div> 11 <script> 12 onload = () => { 13 window.scrollTo(0, 800); 14 }; 15 </script>