bootbox:一个弹出框插件,官网看一下例子就好了:http://bootboxjs.com/examples.html 目前来说应该只要调用bootbox.js就可以了,没有css的问题 1.有最基本的调用就是 bootbox.alert("This is the default alert!"); 就什么都不做,只要alert一下就已经完成了它的使命,要是只要实现这样的话我觉得完全没必要引入这个插件呀,只要自己alert一下不就好了 2.再加一步就是有回调函数了,callback
var avatar = new cc.Node('avatar'); var sp = node.addComponent(cc.Sprite); sp.spriteFrame = new cc.SpriteFrame(texture); var mask = new cc.Node(); var mask_node = mask.addComponent(cc.Mask); // 真正的创建出 mask mask.parent = self.node; // mask_node.parent
//创建遮罩层函数体 function createMask(){ var node=document.createElement('div'); node.setAttribute('id','backdrop'); node.style="position:fixed;top:0;left:0;right:0;bottom:0;z-index:1000;background-color:rgba(0,0,0,0.6);"; node.style.display="none