Clip Effect

両端から挟んで縮める、または両端に向かって広がるエフェクトで、表示と非表示を行います。水平と垂直の指定が可能です。

clip

引数説明
direction

初期値:"vertical"
型:String

verticalを指定すると上下の端からの垂直、horizontalを指定すると左右の端からの水平のエフェクトになります。

サンプル

<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>clip demo</title>
    <link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css">
    <style>
    p {margin-top:0; margin-bottom:2px; font-size:14px;}
    #toggle1, #toggle2 {
        width: 100px;
        height: 100px;
        background: #ccc;
        float:left;
    }
    </style>
    <script src="http://code.jquery.com/jquery-1.8.3.js"></script>
    <script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
</head>
<body>

<p>どこかをクリックしてエフェクトを確認してください。</p>
<div id="toggle1"></div>
<div id="toggle2"></div>

<script>
$( document ).click(function() {
    $( "#toggle1" ).toggle( "clip" );
    $( "#toggle2" ).toggle( "clip", {direction : "horizontal"} );
});
</script>

</body>
</html>

 Back to top

© 2010 - 2017 STUDIO KINGDOM