プログレス書き直す

2年前に書いた spin.jsを使ったプログレス状態のWebページを表現する JavaScript
http://blog.zaq.ne.jp/oboe2uran/article/970/
プログレス表示中に半透明なシートを覆い被せてクリックできないようにガードするものを書いたけど、
CSSスタイルシート、positionの指定が、アホすぎたので書き直した。

====== CSSソース ======
@CHARSET "UTF-8";
/* progressmodal-1.2.css */
div#progress{
position: absolute;
}
div.progressmodal-background{
position: absolute!important;
width: 100%!important;
height: 100%!important;
background-color: #000000!important;
opacity: 0.25!important;
filter: alpha(opacity=25)!important;
-ms-filter: alpha(opacity=25)!important;
z-index: 10!important;
}
div.progressmodal-container{
position: absolute!important;
width: 200px!important;
height: 100px!important;
background-color: #ffffff!important;
z-index: 11!important;
border-radius: 10px!important;
}

div.progressmodal-container table{
border-collapse: collapse!important;
border-spacing: 0!important;
white-space: nowrap!important;
position: relative!important;
height: 100%!important;
margin: auto!important;
}

div.progressmodal-container td{
border: none!important;
font-size: 18px!important;
font-weight: bold!important;
font-family: 'Lucida Grande','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',Meiryo,メイリオ, ans-serif;
width: 48px!important;
}
div.progressmodal-container table tr:nth-child(1) td{
height: 40px!important;
padding-top:10px!important;
}
div.progressmodal-container table tr:nth-child(2) td{
padding-top:4px!important;
}
======= JSソース ==========
/*
* progressmodal.js
*
* initProgressModal( selector
* ,{ message: "Loading..."
* , width: "220px"
* , height: "100px"
* , fontsize: "20px"
* , fontfamily: "Century"
* , spinopts : { // spin option ==> http://fgnass.github.io/spin.js
* lines: 12, // The number of lines to draw
* length: 7, // The length of each line
* width: 5, // The line thickness
* radius: 10, // The radius of the inner circle
* rotate: 0, // Rotation offset
* corners: 1, // Roundness (0..1)
* color: '#000000', // #rgb or #rrggbb
* direction: 1, // 1: clockwise, -1: counterclockwise
* speed: 1, // Rounds per second
* trail: 100, // Afterglow percentage
* opacity: 1/4, // Opacity of the lines
* fps: 20, // Frames per second when using setTimeout()
* zIndex: 2e9, // Use a high z-index by default
* className: 'spinner', // CSS class to assign to the element
* top: 'auto', // center vertically
* left: 'auto', // center horizontally
* position: 'relative' // element position
* }
* }
* );
* displayProgressModal("div#modal", true);
*
*/
var _progressmodal_spinner, body_margin, body_padding;
function initProgressModal(selector, options){
var container = selector + " div.progressmodal-container";

$(selector).append('<div class="progressmodal-background"></div>');
$(selector).append('<div class="progressmodal-container"></div>');
var spinopts = { top: 'auto' };
if ($.isEmptyObject(options)){
$(container).append('<table><tr><td class="progressmodal-spin"><div id="progressmodal-spin"></div></td><td>Loading...</td></tr></table>');
// CSS 初期化
initProgressModalCSS(selector);
}else{
if ($.isEmptyObject(options['message'])){
$(container).append('<table><tr><td class="progressmodal-spin"><div id="progressmodal-spin"></div></td><td>Loading...</td></tr></table>');
}else{
$(container).append('<table><tr><td class="progressmodal-spin"><div id="progressmodal-spin"></div></td></tr><tr><td>'+options['message']+'</td></tr></table>');
}
// CSS 初期化
initProgressModalCSS(selector);
if (!$.isEmptyObject(options['width'])){
$(container).width(options['width']);
}
if (!$.isEmptyObject(options['height'])){
$(container).height(options['height']);
}
if (!$.isEmptyObject(options['fontsize'])){
$(container+" table td").css('font-size', options['fontsize']);
}
if (!$.isEmptyObject(options['fontfamily'])){
$(container+" table td").css('font-family', options['fontfamily']);
}
if (!$.isEmptyObject(options['spinopts'])){
spinopts = options['spinopts'];
}
}
_progressmodal_spinner = new Spinner(spinopts);
adjustProgressModalCenter(container);
$(window).resize(function(){
adjustProgressModalCenter(container);
});
body_margin = $('body').css("margin");
body_padding = $('body').css("padding");
}
function initProgressModalCSS(selector){
var divModalObj = new Object();
divModalObj.display = "none!important";
divModalObj.position = "fixed!important";
divModalObj.width = "100%!important";
divModalObj.height = "100%!important";
$(selector).css(divModalObj);
}
// プログレスモーダル open/close
function displayProgressModal(selctor, toOpen){
if (toOpen){
$(selctor).fadeIn(500);
_progressmodal_spinner.spin($('#progressmodal-spin').get(0));
$('body').css("margin", "0");
$('body').css("padding", "0");
}else{
_progressmodal_spinner.stop();
$(selctor).fadeOut(250);
$('body').css("margin", body_margin);
$('body').css("padding", body_padding);
$(selctor).empty();
}
}
//ウィンドウの位置をセンターに調整
function adjustProgressModalCenter(target){
var w = $(target).parent().parent().width();
var h = $(target).parent().parent().height();
var margin_top = (h - $(target).height()) / 2 ;
if (margin_top < 1){
margin_top = 100;
}
var margin_left = (w - $(target).width()) / 2;
$(target).css({top:margin_top+"px", left:margin_left+"px"});
$('#progress').css("width", w+"px");
$('#progress').css("height", h+"px");
}
===========================
使い方は、<div id="progress"></div> を書いて
// 準備、、、
initProgressModal('#progress', { message: "Loading..." });
// 表示開始
displayProgressModal('#progress', true);
// 表示停止
displayProgressModal('#progress', false);

f:id:posturan:20160313171150j:plain