Layer 使用

Posted blogs-wang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Layer 使用相关的知识,希望对你有一定的参考价值。

官网文档 http://layer.layui.com/mobile/api.html

1.需要添加jquery的引用然后是

loadExtentFile("css", "/plugin/layer_mobile-2.0/need/layer.css");

loadExtentFile("js", "/plugin/layer_mobile-2.0/layer.js");
loadExtentFile("js", "/plugin/layer_mobile-2.0/layerBLL.js");

 

封装的部分代码。

function layer_tip(content) {
    layer.open({
        content: content
        , skin: ‘msg‘
        , anim: ‘scale‘        
        , time: 1 //2秒后自动关闭

        , style: ‘ position: inherit;  left: auto;‘

    });
};

function Layer_Loding(content =‘请稍后‘) {
    layer.open({
        content: content
        , type: 2
        //, skin: ‘msg‘
        //, anim: ‘scale‘
        //, time: 1 //2秒后自动关闭
        , shadeClose: false
        , style: ‘ position: inherit;  left: auto;‘

    });
    
};

;function Layer_closeAll() {

    layer.closeAll(); //疯狂模式,关闭所有层
};

调用代码

 layer_tip(‘请选择操作环节!‘);

Layer_Loding() ;
Layer_closeAll();

以上是关于Layer 使用的主要内容,如果未能解决你的问题,请参考以下文章

layer简单使用

layer弹窗使用

Caffe代码解析Layer网络层

C++算法之爬楼梯问题的代码

点击确定后怎么关闭layer.prompt的窗口

C++卷积神经网络实例:tiny_cnn代码详解(10)——layer_base和layer类结构分析