luxiaobei / pbox

jquery 弹框的一个插件

Home Page:http://why520crazy.github.io/pbox

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pbox

jquery 弹框的一个插件

调用方式

$(".pbox").pBox({content:'XXXX'})

参数列表

{
        remoteUrl  : null,
        content    : "",
        placement  : "bottom",
        animation  : false,
        delay      : 0,
        openClass  : 'pbox-open',
        closeClass : 'pbox-close',
        autoClose  : true,
        offset     : 4,
        align      : null,
        drag       : true,
        destroy    : true
}

content内容模板:

<div class="pbox-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
        <h3>我是头部</h3>
</div>
<div class="pbox-body">
        content<p>我是内容!!</p><p>我是内容!!</p>
</div>
<div class="pbox-footer">
        <button class="btn">保存</button>
</div>

实例演示: http://why520crazy.github.io/pbox/simple/

About

jquery 弹框的一个插件

http://why520crazy.github.io/pbox


Languages

Language:JavaScript 54.3%Language:HTML 35.2%Language:CSS 10.6%