HTML DOM clip 属性

定义和用法

clip 属性设置元素的形状。

当图像大于它所在的元素时会发生什么?"clip" 属性允许你规定元素的可见尺寸,以及元素被裁剪和显示的形状。

语法:

  1. Object.style.clip=rect(top,right,bottom,left)|auto

可能的值

描述
rect(top,right,bottom,left) 设置元素的形状。
auto 浏览器设置元素的形状。

提示和注释

注释:该属性不能用于 "overflow" 设置为 "visible" 的元素。

实例

本例把图像裁剪为指定的形状:

  1. <html>
  2. <head>
  3. <style type="text/css">
  4. img
  5. {
  6. position:absolute;
  7. top:100px;
  8. }
  9. </style>
  10. <script type="text/javascript">
  11. function clipImage()
  12. {
  13. document.getElementById("img1").style.clip="rect(0px,50px,50px,0px)";
  14. }
  15. </script>
  16. </head>
  17. <body>
  18.  
  19. <img id="img1" border="0" src="logocss.gif" width="95" height="84" />
  20.  
  21. <input type="button" onclick=clipImage() value="Clip image" />
  22.  
  23. </body>
  24. </html>