【jQuery】コンテンツをオーバーレイ表示させちゃう

デモ

 

OPEN
CLOSE

でた!

 

HTML部分

<div id="btn">OPEN</div>
<div id="overlay">
<div id="close">CLOSE</div>
<p>でた!</p>
<!-- /#overlay --></div>

 

CSS部分

#btn {
position: absolute;
top: 20px;
right: 20px;
cursor: pointer;
}
#overlay {
display: none;
width: 100%;
position: fixed;
top: 0;
z-index: 100;
background: rgba(0,0,0,0.8);
}
#close {
position: absolute;
top: 20px;
right: 20px;
cursor: pointer;
}

 

スクリプト部分

<script>
$(function() {
	$("#btn").click(function() {
		$("#overlay").fadeIn();
	});
	$("#close").click(function() {
		$("#overlay").fadeOut();
	});
});
</script>

関連するかもしれない記事

要素が表示されたときに処理を行ひたひ

ここを参考にさせていただきました。ありがとうございます。 http://on-ze.com/archives/2679

2016.08.29

【jQuery】コンテンツをオーバーレイ表示させちゃう

デモ   OPEN CLOSE でた!   HTML部分 <div id="btn">OPEN</div> <div id=&qu…

2015.09.16

ボタンクリック→開く

実装したいなら以下   more 中身だよ         <script> $(document).ready(function(){ …

2015.08.19

スクロール量でヘッダーなどの要素を固定するやつ

がんばれ     Html <div id="oya"> <div id="ko"> <nav> &lt…

2015.05.12

スクロールしてたら下からいきなりニュルっとでてくるあれ

これやで〜       CSS   footer { background: #000; color: #fff; padding: 20px 0; posit…

2015.05.01

Page Top


Warning: Use of undefined constant XML - assumed 'XML' (this will throw an Error in a future version of PHP) in /home/44uta/www/44uta/wpbox/wp-content/plugins/wp-syntaxhighlighter/wp-syntaxhighlighter.php on line 1048