原型 - undoClipping() 方法



此方法將元素的 CSS 溢位屬性設定回應用之前所設定的值“元素- makeClipping()”。

語法

element.undoClipping();

返回值

返回 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_element_object.htm
廣告
© . All rights reserved.