PHP & JavaScript Room :: 設置サンプル

実行結果

エフェクト操作:カスタム:animate(params, [duration[, easing, [callback]]])の使用例 | jQuery

くまさんケーキくまさんケーキ

くまさんケーキくまさんケーキ

設置サンプルのソース

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
      <meta http-equiv="Content-Language" content="ja" />
      <meta http-equiv="Content-Script-Type" content="text/javascript" />
      <meta http-equiv="Content-Style-Type" content="text/css" />
      <meta http-equiv="imagetoolbar" content="no" />
      <title>エフェクト操作:カスタム:animate(params, [duration[, easing, [callback]]])の使用例 | jQuery</title>
      <link rel="stylesheet" type="text/css" href="/content/lib/global.css" />
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
      <script type="text/javascript" src="/content/lib/jquery/jquery.easing.1.3.js"></script>
      <script type="text/javascript">
         $(function(){
            $("#btn_animate1").click(function(){
               $("#sample1").animate(
                  { 
                        width: "320px",
                        height: "240px",
                        opacity: 0.65,
                        fontSize: "3em", 
                        borderWidth: "10px"
                  },
                  3000 /* アニメーション速度 */
               );
            });
            $("#btn_animate2").click(function(){
               $("#sample2").animate(
                  { 
                        width: "320px",
                        height: "240px",
                        opacity: 0.65,
                        fontSize: "3em", 
                        borderWidth: "10px"
                  },
                  3000, /* アニメーション速度 */
                  "kakukaku"
               );
            });
            /* カクカクとアニメーションさせる */
            jQuery.extend(jQuery.easing,{
               kakukaku: function (x, t, b, c, d) {
                  return c*((t=Math.round((t+0.5)/200)*200)/d) + b;
               }
            });
         });
      </script>
      <style type="text/css">
         #sample1, #sample2 { background-color:#000; width:100px; height:100px; border:1px solid #000; overflow:hidden; position:relative; }
         #sample1 span, #sample2 span { position:absolute; top:40%; left:0; text-align:center; width:100%; color:#000; }
      </style>
   <link rel="stylesheet" type="text/css" href="/common/css/example.css"></head>
   <body id='example3' class='example'><div class="ads" style="margin:32px auto;text-align:center;"></div><h1 class='h'><a href='/'>PHP &amp; JavaScript Room</a> :: 設置サンプル</h1>
<h3 class='h'>実行結果</h3>
      <div id="wrap">
         <h1>エフェクト操作:カスタム:animate(params, [duration[, easing, [callback]]])の使用例 | jQuery</h1>
<!-- CODE -->
         <p><button id="btn_animate1">アニメーションする</button></p>
         <div id="sample1"><img src="http://farm4.static.flickr.com/3222/2974008614_736e2d5b50.jpg" alt="くまさんケーキ" /><span>くまさんケーキ</span></div>
         <br>
         <p><button id="btn_animate2">アニメーションする(easing指定)</button></p>
         <div id="sample2"><img src="http://farm4.static.flickr.com/3222/2974008614_736e2d5b50.jpg" alt="くまさんケーキ" /><span>くまさんケーキ</span></div>
<!-- / CODE -->
      </div>
   </body>
</html>