返回到:Prototype – 元素对象
此方法通过将元素的溢出值设置为“隐藏”来模拟支持不佳的 CSS 剪辑属性。
语法
element.makeClipping();
返回值
返回一个 HTML 元素。
例子
<html> <head> <title>Prototype examples</title> <script type = "text/javascript" src = "/javascript/prototype.js"></script> <script> function Clipping() { $('framer').makeClipping().setStyle( {width: '50px', height: '50px'}) } function Original() { $('framer').undoClipping(); } </script> </head> <body> <p>Click the button to see the result.</p> <div id = "framer"> <img src = "/images/prototype.gif" alt = "Prototype Logo" /> </div> <br /> <input type = "button" value = "Clipping" onclick = "Clipping();"/> <input type = "button" value = "Original" onclick = "Original();"/> </body> </html>
返回到:Prototype – 元素对象
作者:terry,如若转载,请注明出处:https://www.web176.com/prototype_api/9077.html