jQuery UI の show プラグインを使い、ハイライト表示アニメーション後、要素を出現させる方法。show() の1つ目の引数に、「highlight」を指定する。3つ目の引数で、アニメーション動作速度を、ミリ秒単位で、調整できる。
実装例(サンプル)
実装例(サンプル)の動作について
「Show」ボタンをクリックすると、ハイライト表示アニメーション後、ラベンダー色のボックスを出現させる。
実装例のソースコード
読み込み
読み込み方は、2種類ある。パスは、それぞれ、アップロードした場所を指定する。
まとめて読み込む場合
<link rel="stylesheet" href="themes/base/jquery.ui.all.css">
<script type="text/javascript" src="jquery-1.4.2.js"></script>
<script type="text/javascript" src="ui/jquery-ui-1.8.12.custom.min.js"></script>
<script type="text/javascript" src="jquery-1.4.2.js"></script>
<script type="text/javascript" src="ui/jquery-ui-1.8.12.custom.min.js"></script>
個別に読み込む場合
<link rel="stylesheet" href="themes/base/jquery.ui.all.css">
<script type="text/javascript" src="jquery-1.4.2.js"></script>
<script type="text/javascript" src="ui/jquery.ui.core.js"></script>
<script type="text/javascript" src="ui/jquery.ui.widget.js"></script>
<script type="text/javascript" src="ui/jquery.ui.button.js"></script>
<script type="text/javascript" src="ui/jquery.effects.core.js"></script>
<script type="text/javascript" src="ui/jquery.effects.highlight.js"></script>
<script type="text/javascript" src="jquery-1.4.2.js"></script>
<script type="text/javascript" src="ui/jquery.ui.core.js"></script>
<script type="text/javascript" src="ui/jquery.ui.widget.js"></script>
<script type="text/javascript" src="ui/jquery.ui.button.js"></script>
<script type="text/javascript" src="ui/jquery.effects.core.js"></script>
<script type="text/javascript" src="ui/jquery.effects.highlight.js"></script>
JavaScript
<script>
<!--
jQuery( function() {
jQuery( '#jquery-ui-show' ) . button();
jQuery( '#jquery-ui-show' ) . click( function() {
jQuery( '#jquery-ui-effect' ) . show( 'highlight', '', 1500 );
} );
} );
// -->
</script>
<!--
jQuery( function() {
jQuery( '#jquery-ui-show' ) . button();
jQuery( '#jquery-ui-show' ) . click( function() {
jQuery( '#jquery-ui-effect' ) . show( 'highlight', '', 1500 );
} );
} );
// -->
</script>
CSS
<style>
<!--
#jquery-ui-effect {
display: none;
width: 400px;
padding: 50px 15px;
font-size: 15px;
background: lavender;
}
-->
</style>
<!--
#jquery-ui-effect {
display: none;
width: 400px;
padding: 50px 15px;
font-size: 15px;
background: lavender;
}
-->
</style>
HTML
<button id="jquery-ui-show">show</button>
<div id="jquery-ui-effect" class="ui-widget-content ui-corner-all">
<p>「Show」ボタンをクリックすると、ハイライト表示アニメーション後、このボックスを出現させる。</p>
</div>
<div id="jquery-ui-effect" class="ui-widget-content ui-corner-all">
<p>「Show」ボタンをクリックすると、ハイライト表示アニメーション後、このボックスを出現させる。</p>
</div>