var play_loading = (function () {
function play_loading() {
this.msg = '游戏载入中…';
this.onCreate();
}
play_loading.prototype.onCreate = function () {
var content;
content = document.createElement('div');
content.setAttribute('id', 'play_loading');
content.style.position = 'absolute';
content.style.width = '100%';
content.style.height = '100%';
content.style.top = '0';
content.style.textAlign = "center";
content.style.bottom = '0';
content.style.left = '0';
content.style.right = '0';
content.style.zIndex = 9999;
content.style.backgroundColor = '#ffffff';
content.innerHTML = '' +
'
加载中。。。
' + '请稍等
' + '