Last active
December 14, 2015 19:49
-
-
Save nakajijapan/5139720 to your computer and use it in GitHub Desktop.
モーダル画面 pintarest風 修正版
・overlayはjs側で追加
・モーダルで表示する際は指定されたDIVタグ内に追加して表示を消すときは当該DIVタグの中身も削除する
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#---------------------------------------------- | |
# モーダル画面の表示 | |
#---------------------------------------------- | |
(($)-> | |
$.SimpleModal = (element, options) -> | |
defaults = | |
target: '' | |
continue_overlay: false | |
close_callback: -> | |
css_overlay: | |
position: 'fixed' | |
top: 0 | |
right: 0 | |
bottom: 0 | |
left: 0 | |
'z-index': 1000; | |
'background-color': '#ffffff'; | |
opacity: 0.85; | |
filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=85)' | |
filter: 'alpha(opacity=80)' | |
display: 'none' | |
cursor: 'wait' | |
css_window: | |
opacity: 0 | |
position: 'fixed' | |
padding: '0px' | |
margin: '0px' | |
top: '0px' | |
color: 'rgb(0, 0, 0)' | |
border: '0px' | |
'background-color': '#fff' | |
'z-index': 9000 | |
plugin = this; | |
plugin.options = $.fn.extend(defaults, options) | |
_this = element | |
#--------------------------- | |
# init | |
#--------------------------- | |
plugin.init = () -> | |
# init | |
options = plugin.options; | |
$overlay = $('#modal_overlay') | |
$modal_window = $('#modal_window') | |
if $overlay.length < 1 | |
$('body').append($('<div id="modal_overlay"></div>').css(options.css_overlay)) | |
if $modal_window.length < 1 | |
$('body').append($('<div id="modal_window"></div>')) | |
return plugin | |
#--------------------------- | |
# close | |
#--------------------------- | |
plugin.close = () -> | |
# init | |
options = plugin.options; | |
callback = () -> | |
if options.continue_overlay == false | |
callback = () -> | |
$('#modal_overlay').fadeOut(500, options.close_callback) | |
else | |
callback = options.close_callback | |
$modal = $('#modal_window') | |
$modal.animate({top: "+=100px", opacity: 0}, 500, | |
() -> | |
setTimeout(() -> | |
callback(); | |
, 300); | |
$modal.html('') | |
$modal.remove() | |
) | |
return this | |
#--------------------------- | |
# cancel | |
#--------------------------- | |
plugin.cancel = () -> | |
# init | |
options = plugin.options; | |
callback = () -> | |
$('#modal_overlay').fadeOut(1000, options.close_callback) | |
$modal = $('#modal_window') | |
$modal.animate({top: "-=100px", opacity: 0}, 500, callback) | |
return this | |
#--------------------------- | |
# open | |
#--------------------------- | |
plugin.open = -> | |
# init | |
options = plugin.options; | |
$clone = $(_this).clone(true) | |
window_height = $(window).height() | |
window_width = $(window).width() | |
height = $(_this).height() | |
width = $(_this).width() | |
retio = 1 | |
if width > 1000 | |
#console.log "1000 / #{width} = " + 1000.0 / width | |
retio = 1000.0 / width | |
width = 1000 | |
#console.log "retio = " + retio | |
center_h = window_height * 0.5 - height * 0.5 | |
center_w = window_width * 0.5 - width * 0.5 | |
$modal = $('#modal_window') | |
$modal.html($clone) | |
$modal.children().show() | |
$modal.css(options.css_window) | |
$modal.css( | |
'display': 'block' | |
'top': '-100px' | |
'left': center_w | |
'height': height * retio + 'px' | |
'width': width + 'px' | |
) | |
if options.continue_overlay == false | |
$('#modal_overlay').fadeIn(300, () -> | |
$('img', $modal).css('width', width + 'px') | |
$modal.animate({top: center_h, left: center_w, opacity: 1}, 500) | |
) | |
else | |
$modal.animate({top: center_h, left: center_w, opacity: 1}, 500) | |
plugin.init() | |
$.fn.SimpleModal = (options) -> | |
plugin = new $.SimpleModal(this, options) | |
plugin.init() | |
return plugin | |
)(jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment