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

実行結果

Widget.Fader

デフォルト

鳥小屋

オプション指定あり(fadeInDuration:1.0、fadeOutDuration:0.5、displayDuration:0.5)

鳥小屋

再生、停止ボタン付き


鳥小屋

ラップなしのオートサイズでフェードイン・フェードアウト切替

テキストをフェードイン・フェードアウトしながら切替

Loading news...

設置サンプルのソース

<!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>Widget.Fader | 設置サンプル</title>
      <link rel="stylesheet" type="text/css" href="/content/lib/global.css" />
      <script type="text/javascript" src="/content/lib/prototype/prototype-1.6.0.3.js"></script>
      <script type="text/javascript" src="/content/lib/scriptaculous/scriptaculous.js?load=effects"></script>
      <script type="text/javascript" src="/content/lib/prototype/fader.js"></script>
      <script type="text/javascript">
         Event.observe(window, "load", function() {
            //Images Array used in all demos
            var images = [
               "http://farm4.static.flickr.com/3138/3032375214_5aedffaca0_m.jpg",
               "http://farm4.static.flickr.com/3064/3031535599_2f8b454232_m.jpg",
               "http://farm4.static.flickr.com/3068/3032375032_aab0a7b581_m.jpg",
               "http://farm4.static.flickr.com/3055/3031535435_6af4618ea1_m.jpg",
               "http://farm4.static.flickr.com/3217/3031535573_6e541be249_m.jpg",
               "http://farm4.static.flickr.com/3223/3032375140_5eba53f7e9_m.jpg",
               "http://farm4.static.flickr.com/3151/3032375106_226d2a6d52_m.jpg",
               "http://farm4.static.flickr.com/3239/3032375082_fd66d11941_m.jpg",
               "http://farm4.static.flickr.com/3177/3032374882_7b7553fff5_m.jpg",
               "http://farm4.static.flickr.com/3171/3032374922_8fcb4ea43d_m.jpg",
               "http://farm4.static.flickr.com/3243/3032374798_cec6385d35_m.jpg"
            ];

            var images2 = [
               "http://farm4.static.flickr.com/3138/3032375214_5aedffaca0_m.jpg",
               "http://farm4.static.flickr.com/3143/3032374956_30e2874e30_m.jpg",
               "http://farm4.static.flickr.com/3064/3031535599_2f8b454232_m.jpg",
            ];

            //Default fader
            new Widget.Fader("defaultDemo", images);

            //Fader with options
            new Widget.Fader("optionsDemo", images, {
               fadeInDuration:1.0,
               fadeOutDuration:0.5,
               displayDuration:0.5
            });

            //Fader with start and stop
            var startStopFader = new Widget.Fader("startStopDemo", images, { autoStart:false });
            Event.observe("startButton", "click", startStopFader.start.bind(startStopFader));
            Event.observe("stopButton", "click", startStopFader.stop.bind(startStopFader));

            //Fader with auto sizing
            new Widget.Fader("autoSizingDemo", images, { autoSize:true });

            //Fader with Text
            var news = [
               "閉店してしまったけど、新宿南口にあったアフリカ料理店「ローズ・ド・サハラ」。",
               "ダチョウの卵の殻に入ったカクテルはとってもインパクト大!!しかも花火付きw",
               "ワニ、カンガルーといった日本では珍しい肉料理が食べれました。ワニのから揚げは、アメリカンドッグの味がしました。なんせワニ肉が小さすぎて衣の味しかしなかったのが正直なところw",
               "メニュー名は忘れたけれど、マイルドでこくのあるカレーです。ピタみたいな硬い円形のパンをちぎってカレーに付けて食べます。結構日本のカレーに近い感じ!",
               "ジャンバラヤだったと思う。詳しくは忘れちゃったけど、しっとりめのトマトシチューチャーハンみたいな感じの味でした!",
               "閉店してしまったけど、新宿南口にあったアフリカ料理店「ローズ・ド・サハラ」。"
            ];
            new Widget.Fader("textDemo", news, { fadeOutDuration:0.5, fadeInDuration:0.8, builder:Widget.Fader.textBuilder });
         });
      </script>
   <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><a href='http://www.eternal.co.za/scripts/fader/'>Widget.Fader</a></h1>

         <h2>デフォルト</h2>
         <img id='defaultDemo' src='http://farm4.static.flickr.com/3243/3032374798_cec6385d35_m.jpg' alt="鳥小屋" />

         <h2>オプション指定あり(fadeInDuration:1.0、fadeOutDuration:0.5、displayDuration:0.5)</h2>
         <img id='optionsDemo' src='http://farm4.static.flickr.com/3243/3032374798_cec6385d35_m.jpg' alt="鳥小屋" />

         <h2>再生、停止ボタン付き</h2>
         <button id='startButton'>Start</button> <button id='stopButton'>Stop</button> <br>
         <img id='startStopDemo' src='http://farm4.static.flickr.com/3243/3032374798_cec6385d35_m.jpg' alt="鳥小屋" />

         <h2>ラップなしのオートサイズでフェードイン・フェードアウト切替</h2>
         <div style='position:relative;width:200px;height:200px;padding:4px;margin-top:8px;border:1px solid #000;background:#000;'>
            <img id='autoSizingDemo' src='http://farm4.static.flickr.com/3243/3032374798_cec6385d35_m.jpg' width='200' />
         </div>

         <h2>テキストをフェードイン・フェードアウトしながら切替</h2>
         <div style='border:1px solid #ccc;padding:4px;overflow:hidden;'>
            <div id='textDemo'>Loading news...</div>
         </div>

      </div>
   </body>
</html>