654950-1.html (444B)
1 <!DOCTYPE HTML> 2 <html> 3 <body> 4 <div style="opacity:0.8; background-color: gray;"> 5 <div style="overflow: hidden; transform: translate(0,10px);"> 6 <canvas id="canvas" width="256" height="256"></canvas> 7 </div> 8 </div> 9 <script> 10 var ctx = document.getElementById("canvas").getContext("2d"); 11 ctx.fillStyle = "yellow"; 12 ctx.fillRect(0, 0, 256, 50); 13 ctx.fillStyle = "lime"; 14 ctx.fillRect(0, 50, 256, 206); 15 </script> 16 </body> 17 </html>