Bounce Effect
要素にバウンドするようなエフェクトを与えます。表示/非表示で使用されると最初または最後のバウンドはフェードイン/フェードアウトになります。
bounce
引数 | 説明 |
---|---|
distance |
初期値: バウンドの最大値をピクセル単位で指定します。 |
times |
初期値: バウンド回数を指定します。 show()、hide()に使用された場合、フェードインとフェードアウトの際に更に半分余計にバウンドします。 |
サンプル
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>bounce 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( "bounce", { times: 3 }, "slow" );
});
</script>
</body>
</html>
© 2010 - 2017 STUDIO KINGDOM