An open API service indexing awesome lists of open source software.

https://github.com/helti/winpop

a A simple pop-up box component
https://github.com/helti/winpop

jquery-plugin

Last synced: about 1 month ago
JSON representation

a A simple pop-up box component

Awesome Lists containing this project

README

          

##### A simple pop-up box component

![](b.gif)
>使用方法:语法 new winpop(opt,function(){})
```javascript
//例:
var win = new winpop({
headercon:'提示',
popdes:'请谨慎操作?'
},function(){
console.log("回调函数");
});
var btn=document.getElementById("open");
btn.addEventListener('click',function(){
win.alertpop();
})
$("#alert").on('click',function(){
win.confimpop();
})
```