$(function () {
window.onselectstart = block;
window.ontouchstart = block;
window.ondragstart = block;
$('.msg-header').Drag($('.msg-container'));
$('.menu-container ul li span').on('click',function(){
message.alert('这里是','
');
});
function block() {
return false;
}
});
(function(){
$(window).on('resize',function(){
$('.msg-container').css({
"top":"50%",
"left":"50%"
});
});
$(document.body).on('click','.msg-footer span',function(){
var p = $(this).parent().parent();
var m = $('.mask');
p.css('animation','fadeOut .2s forwards');
m.css('animation','fadeOut .3s forwards');
setTimeout(function(){
p.remove();
m.remove();
},300);
});
})();
var message = new function () {
this.alert = function (header, content) {
var id = uuid();
var html =
'' +
'' +
'
' +
content +
'
' +
'' +
'
' +
'';
$(document.body).append(html);
$('.mask').show().css('animation','fadeIn .2s forwards');
$('#mh-'+id).Drag($('#mc-'+id));
return id;
}
}
function uuid() {
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
var r = Math.random() * 16 | 0,
v = c == 'x' ? r : (r & 0x3 | 0x8);
return v.toString(16);
});
}