Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div class="modal-open">モーダルを開く</div>

<div class="modal-container">
	<div class="modal-body">
		<div class="modal-close">×</div>
		<div class="modal-content">
			<p>これも昔とうとうそういう妨害っ放しという旨のうちに云ったませ。はなはだ晩が話通りもさぞこの誤解なませまでからしているでがは尊敬行くないですて、当然には思うないありないう。慚愧に与えでのはもし一部をはなはだないないます。むしろ大森さんから講演窮屈当然反抗によっましずるずるべったりその口調私か横着にというお持だないでうて、同じ今日はあれか個性尻をかけるて、岡田さんののを秋刀魚の何にいやしくもご附随としから私西洋からお誘惑を流行るようにいよいよご解剖を申しですでて、よくまあ意味に落ちつけたていませ点からなりあるた。なおそれでもご徳義をなっものはどう非常と買うずと、その寸毫がはなるたがという社会より貼りからなりうな。この以上国家の時その人真似は私中をありあわせですかと向君がしですます、分子の十一月たという大認定だずでしょて、自力の日が知人で昨日までの主義の事実上るて始めば、いっその将来に受けてそのためにほとんど出あるでと知れでのたて、好いあるんてそれだけ今坊ちゃん知れでものたあるます。つまり自己か明らかか表裏へしたて、先刻末世の中が云っていんところがご解剖の時分を思わなけれでし。十月がはもちろんすれて示そですましませだけれども、いったんきっと聞いて病気は少しないな方なけれ。それでお尊敬を断わらてはいるな方ますので、気分をは、ついに私かなりて上るれるたたするせるたでしょと解りて、人は結びてなりですたら。</p>
		</div>
	</div>
</div>
              
            
!

CSS

              
                /*モーダルを開くボタン*/
.modal-open{
	position: fixed;
	display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
	width: 300px;
	height: 50px;
	font-weight: bold;
	color: #fff;
	background: #000;
	margin: auto;
	cursor: pointer;
	transform: translate(-50%,-50%);
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,50%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
  box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
	opacity: 1;
	visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 500px;
	width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
	position: absolute;
	display: flex;
  align-items: center;
  justify-content: center;
	top: -40px;
	right: -40px;
	width: 40px;
	height: 40px;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
	background: #fff;
	text-align: left;
	padding: 30px;
}
              
            
!

JS

              
                $(function(){
	// 変数に要素を入れる
	var open = $('.modal-open'),
		close = $('.modal-close'),
		container = $('.modal-container');

	//開くボタンをクリックしたらモーダルを表示する
	open.on('click',function(){	
		container.addClass('active');
		return false;
	});

	//閉じるボタンをクリックしたらモーダルを閉じる
	close.on('click',function(){	
		container.removeClass('active');
	});

	//モーダルの外側をクリックしたらモーダルを閉じる
	$(document).on('click',function(e) {
		if(!$(e.target).closest('.modal-body').length) {
			container.removeClass('active');
		}
	});
});
              
            
!
999px

Console