最近の更新

2013年10月30日水曜日

ポップオーバー(1つだけ開く)

【目的】
Twitter Bootstrap2.3.1でポップオーバーを1つだけ開くようにします。



【準備】
1.「Twitter Bootstrap2.3.1の使用方法」の手順の通り、Twitter Bootstrapを配置しておきます。



【手順1】
1.HTMLファイル「index.html」(任意)を作成。
2.「index.html」を以下の様に入力。
<!DOCTYPE html>
<html>
    <head>
        <link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" />
    </head>
    <body>
        <a href="#" class="btn popover-test" title="タイトル" data-placement="bottom" data-content="1つ目">ポップオーバー1</a>
        <a href="#" class="btn popover-test" title="タイトル" data-placement="bottom" data-content="2つ目">ポップオーバー2</a>
        <a href="#" class="btn popover-test" title="タイトル" data-placement="bottom" data-content="3つ目">ポップオーバー3</a>

        <script src="http://code.jquery.com/jquery.js"></script>
        <script src="bootstrap/js/bootstrap.min.js"></script>
        <script>
            $('.popover-test').popover();
            $('.popover-test').click(function(){
                $('.popover-test').not(this).popover('hide');
            });
        </script>
    </body>
</html>



【手順2】
1.ブラウザで「index.html」を開き、以下の様に表示されれば成功です。





































以上です。

0 件のコメント:

コメントを投稿

注: コメントを投稿できるのは、このブログのメンバーだけです。

関連記事