Explode Effect

要素を破片が拡散する、または破片が集まるようなエフェクトで表示、非表示を行います。

explode

引数説明
pieces

初期値:9
型:Integer

拡散する破片の数を指定します。この値は2乗の数である必要があり、それ以外の値は一番近い2乗の数に丸められます。

サンプル

<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>explode 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;}
    #toggle {
        width: 100px;
        height: 100px;
        background: #ccc;
    }
    </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="toggle"></div>

<script>
$( document ).click(function() {
    $( "#toggle" ).toggle( "explode" );
});
</script>

</body>
</html>

 Back to top

© 2010 - 2017 STUDIO KINGDOM