今日の人気記事

まだデータがありません。

シンプルなモーダルウィンドウを実装「plainModal」

当ページのリンクには広告が含まれています。

スポンサーリンク

シンプルなモーダルウィンドウを実装するプラグイン「plainModal」を紹介します。

jQueryプラグイン「plainModal」

このプラグインを使えば、さまざまな効果をオプションで付加できるシンプルなモーダルウィンドウを作成することができます。

オプションでは、モーダルウィンドウの開き方・閉じ方・位置・スピード・背景の透過度……など、さまざまな設定をすることができます。

スポンサーリンク

デモに「ここをクリック!クリック!」というテキストがあるので、クリックしてみてください。シンプルなモーダルウィンドウが表示されます。

「plainModal」のデモ

デモのソース(HTML + jQuery)

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="plainModal のデモでーす。">
<title>plainModal - jQuery Plugin Demo</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="jquery.plainmodal.min.js"></script>

<style>
body {
  background-color: #ddd;
}
#demo-window {
  padding: 10px;
  background-color: #fff;
  border: blue solid 1px;
  display: none;
}
</style>
</head>
<body>
<p><a href="https://webkaru.net/jquery-plugin/plainmodal/">「jQueryプラグインまとめ」に戻る</a></p>

<h1>plainModal のデモでーす。</h1>

<div id="demo-button">ここをクリック!クリック!</div>

<div id="demo-window">
<p>ウィンドウの外、あるいは「ESCキー」を押すとウィンドウが閉じます。</p>
</div>

<script>
$('#demo-button').click(function() {
  $('#demo-window').plainModal('open', {overlay: {color: '#fff', opacity: 0.5}});
});
</script>

</body>
</html>
スポンサーリンク

関連記事(一部広告含む)