返回到:Prototype – 元素对象
此方法将元素的 CSS 溢出属性设置回应用Element.makeClipping()之前的值。
语法
element.undoClipping();
返回值
返回 HTML 元素。
例子
HTML
x
27
27
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({width: '50px', height: '50px'})
9
}
10
function Original() {
11
$('framer').undoClipping();
12
}
13
</script>
14
</head>
15
16
<body>
17
<p>Click the button to see the result.</p>
18
19
<div id = "framer">
20
<img src = "/images/prototype.gif" alt = "Prototype Logo" />
21
</div>
22
<br />
23
24
<input type = "button" value = "Clipping" onclick = "Clipping();"/>
25
<input type = "button" value = "Original" onclick = "Original();"/>
26
</body>
27
</html>
返回到:Prototype – 元素对象
阅读剩余 79%
作者:terry,如若转载,请注明出处:https://www.web176.com/prototype_api/8986.html