offscreen-clipped-blendmode-ref.html (415B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <meta charset="utf-8"> 4 <title>Scrolled blend mode</title> 5 6 <style> 7 8 body { 9 margin: 0; 10 padding: 100px; 11 height: 4000px; 12 background: white; 13 } 14 15 #inner-contents { 16 border: 1px solid black; 17 box-sizing: border-box; 18 width: 50px; 19 height: 50px; 20 margin-top: 1400px; 21 } 22 23 </style> 24 25 <div id="inner-contents"></div> 26 27 <script> 28 29 document.documentElement.scrollTop = 1200; 30 31 </script>