HTML DOM clip 属性
定义和用法
clip 属性设置元素的形状。
当图像大于它所在的元素时会发生什么?"clip" 属性允许你规定元素的可见尺寸,以及元素被裁剪和显示的形状。
语法:
- Object.style.clip=rect(top,right,bottom,left)|auto
可能的值
值 | 描述 |
---|---|
rect(top,right,bottom,left) | 设置元素的形状。 |
auto | 浏览器设置元素的形状。 |
提示和注释
注释:该属性不能用于 "overflow" 设置为 "visible" 的元素。
实例
本例把图像裁剪为指定的形状:
- <html>
- <head>
- <style type="text/css">
- img
- {
- position:absolute;
- top:100px;
- }
- </style>
- <script type="text/javascript">
- function clipImage()
- {
document.getElementById("img1").style.clip="rect(0px,50px,50px,0px)";
- }
- </script>
- </head>
- <body>
- <img id="img1" border="0" src="logocss.gif" width="95" height="84" />
- <input type="button" onclick=clipImage() value="Clip image" />
- </body>
- </html>