运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗色/亮色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> img { position: absolute; top: 50px; } </style> </head> <body> <img id="myImg" src="w3javascript.gif" width="100" height="132"> <button type="button" onclick="clipImage()">Clip image</button> <button type="button" onclick="clearClip()">Unclip image</button> <script> function clipImage() { document.getElementById("myImg").style.clip = "rect(0px 75px 75px 0px)"; } function clearClip() { document.getElementById("myImg").style.clip = "auto"; } </script> </body> </html>