Prototype-element-undoclipping

提供:Dev Guides
移動先:案内検索

プロトタイプ-undoClipping()メソッド

このメソッドは、要素のCSSオーバーフロープロパティを、_Element.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>

出力