1523080.html (436B)
1 <!DOCTYPE html> 2 <style> 3 html, body { 4 margin: 0; 5 } 6 </style> 7 <div id="red" style="position:absolute; width: 400px; height: 400px; background-color: red; top: 0px; left: 0px"></div> 8 <div id="scroller" style="overflow:hidden; width:400px; height: 400px"> 9 <div style="filter: blur(20px); width: 800px; height: 800px; background-color: green"></div> 10 </div> 11 <script> 12 document.getElementById('scroller').scrollTo(100, 100); 13 </script>