jQuery UI の toggle を使い、色やサイズをアニメーションで切替

jQuery UI の toggle プラグインを使い、色やサイズをアニメーション動作で切り替える方法。

実装例(サンプル)

アニメーション

このボックスの色とサイズをアニメーション動作で切り替える。

実装例(サンプル)の動作について

「切替」ボタンを押すと、「アニメーション」というタイトルのボックスの色とサイズをアニメーション動作で切り替える。

実装例のソースコード

読み込み

読み込み方は、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>
個別に読み込む場合
<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>

JavaScript

<script>
<!--
jQuery( function() {
    jQuery( '#jquery-ui-button' ) . button();
    jQuery( '#jquery-ui-button' ) . toggle(
        function() {
            jQuery( '#jquery-ui-effect' ) . animate( {
                backgroundColor: '#CC9200',
                color: '#ffffff',
                borderColor: '#FFB700',
                borderWidth: '5px',
                width: 490,
                height: 200,
            }, 1000 );
        },
        function() {
            jQuery( '#jquery-ui-effect' ) . animate( {
                backgroundColor: '#ffffff',
                color: '#000000',
                borderColor: '#aaaaaa',
                borderWidth: '1px',
                width: 240,
                height: 135,
            }, 1000 );
        }
    );
} );
// -->
</script>

CSS

<style>
<!--
#jquery-ui-button {
    font-size: 15px;
}
#jquery-ui-effect {
    width: 240px;
    height: 135px;
    padding: 0.4em;
    position: relative;
    background: #ffffff;
    border-width: 1px;
}
#jquery-ui-effect h3 {
    margin: 0;
    margin-bottom: 10px;
    padding: 0.4em;
    text-align: center;
}
-->
</style>

HTML

<button id="jquery-ui-button">切替</button>
<div id="jquery-ui-effect" class="ui-widget-content ui-corner-all">
    <h3 class="ui-widget-header ui-corner-all">アニメーション</h3>
    <p>このボックスの色とサイズをアニメーション動作で切り替える。</p>
</div>

スポンサード リンク

カテゴリー: JavaScript, jQuery, jQuery UI, Toggle, アニメーション パーマリンク