Bootstrap3
日本語リファレンス

広告

閉じるアイコン  Close icon


閉じるボタンに使う、閉じるアイコンを表示するクラス。


サンプル
ソースコード
<button type="button" class="close">&times;</button>
サンプル
ソースコード
<div class="alert alert-warning alert-dismissible fade in" role="alert">
	<button type="button" data-dismiss="alert" class="close">&times;</button>
	<p><strong>サンプル!</strong> これは警告文のサンプルです。</p>
	<p>アラート内右上端の×をクリックすると閉じます。</p>
</div>

自前のjQueryコードで、パネルを閉じる。

サンプル
パネルのヘッダー
パネルの内容
パネルのヘッダーの右端にある×をクリックすると、パネル全体を閉じます。
ソースコード

HTML

<div id="samplePanel" class="panel panel-default">
	<div class="panel-heading">
		パネルのヘッダー
		<button type="button" id="sampleClose" class="close">&times;</button>
	</div>
	<div class="panel-body">
				パネルの内容
パネルのヘッダーの右端にある&times;をクリックすると、パネル全体を閉じます。 </div> </div>

JavaScript

<script>
	$( function() {
		$('#sampleClose').click( function () {
			$('#samplePanel').fadeOut('normal');
		} );
	} );
</script>

このJavaScriptコードは、jquery.min.jsを読み込んだ後に配置する必要がある。


広告