zoukankan      html  css  js  c++  java
  • layer.open自定义弹出位置

    fixed:false,设置top才有效,待测试。

     这个设置不起作用

                    var img = "<img src="/_temp/qrcodenet/m/book/book20754.png" alt="test" style="padding:13px;" />";
                    layer.open({
                        type: 1,
                        title: "test",
                        closeBtn: 1,
                        area: ['420px', '200px'],
                        scrollbar: false,
                        //skin: 'layui-layer-nobg',
                        //skin: 'layui-layer-rim',
                        skin: 'layui-layer-rim my-layer1',
                        shadeClose: true,
                        content: img,
                        fixed:false,
                        top:10,
                        end: function () {
                        }
                    });

     下边设置起作用

    var img = "<img src="/_temp/qrcodenet/m/book/book20754.png" alt="test" style="padding:13px;" />";
                    layer.open({
                        type: 1,
                        title: "test",
                        closeBtn: 1,
                        area: ['420px', '200px'],
                        scrollbar: false,
                        //skin: 'layui-layer-nobg',
                        //skin: 'layui-layer-rim',
                        skin: 'layui-layer-rim my-layer1',
                        shadeClose: true,
                        content: img,
                        offset: '10px',
                        //offset: ['100px', '200px'],
                        end: function () {
                        }
                    });
  • 相关阅读:
    NPTL 线程同步方式
    mysql事物处理
    DHCP服务器-DNS服务器-Samba服务器
    NTP服务器
    wsgiref 源代码分析
    集群负载均衡LVS
    百万数据查询优化技巧三十则
    Shell 基本运算符
    Shell 数组
    Shell 传递参数
  • 原文地址:https://www.cnblogs.com/hofmann/p/11833373.html
Copyright © 2011-2022 走看看