返回到:Prototype – 元素对象
此方法通过将元素的溢出值设置为“隐藏”来模拟支持不佳的 CSS 剪辑属性。
语法
element.makeClipping();
返回值
返回一个 HTML 元素。
例子
HTML
x
28
28
1
<html>
2
<head>
3
<title>Prototype examples</title>
4
<script type = "text/javascript" src = "/javascript/prototype.js"></script>
5
6
<script>
7
function Clipping() {
8
$('framer').makeClipping().setStyle(
9
{width: '50px', height: '50px'})
10
}
11
function Original() {
12
$('framer').undoClipping();
13
}
14
</script>
15
</head>
16
17
<body>
18
<p>Click the button to see the result.</p>
19
20
<div id = "framer">
21
<img src = "/images/prototype.gif" alt = "Prototype Logo" />
22
</div>
23
<br />
24
25
<input type = "button" value = "Clipping" onclick = "Clipping();"/>
26
<input type = "button" value = "Original" onclick = "Original();"/>
27
</body>
28
</html>
返回到:Prototype – 元素对象
阅读剩余 42%
作者:terry,如若转载,请注明出处:https://www.web176.com/prototype_api/9077.html