1.1.1 • Published 8 years ago

layerbox v1.1.1

Weekly downloads
1
License
ISC
Repository
github
Last release
8 years ago

layerbox弹窗

用法

引入文件

<link rel="stylesheet" type="text/css" href="dist/css/layerbox.css" />
<script type="text/javascript" src="public/jquery.js"></script>
<script type="text/javascript" src="dist/js/layerbox.js"></script>

JS

$(function(){
    // width: 宽度
    // height: 高度
    // isAutoWH: 是否自适应宽高 如果为true则宽高无效
    // isVertical: 是否垂直滚动页面自动居中
    // callback: 弹窗加载完回调
    // content: '' 内容

    var layer=new layerbox();
    layer.open({
        content:'<div style="height:180px; background:#eee;">12</div>',
        callback:function(els){
            console.log(els);
        }
    });
});
1.1.1

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago