$(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('这里是','
AHPU-老中医
的博客   
'); }); 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(); p.css('animation','fadeOut .5s'); setTimeout(function(){ p.remove(); },500); }); })(); var message = new function () { this.alert = function (header, content) { var id = uuid(); var html = '
' + '
' + header + '
' + '
' + content + '
' + '' + '
' $(document.body).append(html); $('#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); }); }