views配下に設置するbladeファイルで、 モーダルウィンドウを表示するcomponentを作成してみました。 jQueryは1.11.3で動かしてます。
モーダルウィンドウ自体のコードは、こちらのサイトのコードをほぼコピペです。 初心者でも分かる!モーダルウィンドウの作り方 大変参考になりました、ありがとうございました。
bladeファイルの中身はこんな感じになりました。
modal_window.blade.php
@section('modal_window')
<div id="modal-content">
@parent
</div>
<script>
$(function(){
//モーダルウィンドウを出現させるクリックイベント
$("#modal-open").click( function(){
//キーボード操作などにより、オーバーレイが多重起動するのを防止する
$( this ).blur() ; //ボタンからフォーカスを外す
if( $( "#modal-overlay" )[0] ) return false ; //新しくモーダルウィンドウを起動しない (防止策1)
//if($("#modal-overlay")[0]) $("#modal-overlay").remove() ; //現在のモーダルウィンドウを削除して新しく起動する (防止策2)
//オーバーレイを出現させる
$( "body" ).append( '<div id="modal-overlay"></div>' ) ;
$( "#modal-overlay" ).fadeIn( "slow" ) ;
//コンテンツをセンタリングする
centeringModalSyncer() ;
//コンテンツをフェードインする
$( "#modal-content" ).fadeIn( "slow" ) ;
//[#modal-overlay]、または[#modal-close]をクリックしたら…
$( "#modal-overlay,#modal-close" ).unbind().click( function(){
//[#modal-content]と[#modal-overlay]をフェードアウトした後に…
$( "#modal-content,#modal-overlay" ).fadeOut( "slow" , function(){
//[#modal-overlay]を削除する
$('#modal-overlay').remove() ;
} ) ;
} ) ;
} ) ;
//リサイズされたら、センタリングをする関数[centeringModalSyncer()]を実行する
$( window ).resize( centeringModalSyncer ) ;
//センタリングを実行する関数
function centeringModalSyncer() {
//画面(ウィンドウ)の幅、高さを取得
var w = $( window ).width() ;
var h = $( window ).height() ;
// コンテンツ(#modal-content)の幅、高さを取得
// jQueryのバージョンによっては、引数[{margin:true}]を指定した時、不具合を起こします。
// var cw = $( "#modal-content" ).outerWidth( {margin:true} );
// var ch = $( "#modal-content" ).outerHeight( {margin:true} );
var cw = $( "#modal-content" ).outerWidth();
var ch = $( "#modal-content" ).outerHeight();
//センタリングを実行する
$( "#modal-content" ).css( {"left": ((w - cw)/2) + "px","top": ((h - ch)/2) + "px"} ) ;
}
});
</script>
<style>
#modal-content {
width: 50% ;
margin: 0 ;
padding: 10px 20px ;
border: 2px solid #aaa ;
background: #fff ;
position: fixed ;
display: none ;
z-index: 2 ;
}
#modal-overlay {
z-index: 1 ;
display: none ;
position: fixed ;
top: 0 ;
left: 0 ;
width: 100% ;
height: 120% ;
background-color: rgba( 0,0,0, 0.75 ) ;
}
.button-link {
color: #00f ;
text-decoration: underline ;
}
.button-link:hover {
cursor: pointer ;
color: #f00 ;
}
</style>
@endsection
読み込み方法(使い方)
作成したbladeファイルの読み込み方法はこちら。
@includeで、先ほど作成したmodal_windowを指定します。 @section('modal_window')の中身が、モーダルウィンドウに表示されるHTMLの中身になります。 @yield('modal_window')で出力。
<div id="faq_csv_modal_window">
{{-- モーダルウィンドウ --}}
@include('components.modal_window')
@section('modal_window')
<div id="modal_open">
<header id="modal_header">
モーダルヘッダーです。
</header>
<main id="modal_main">
</main>
<footer id="modal_footer">
<p><a id="modal-close" class="button-link">閉じる</a></p>
</footer>
</div>
@endsection
@yield('modal_window')
</div>
モーダル表示できましたでしょうか?