当前位置: 首页 > news >正文

NET餐厅管理系统前端js-dwz.dialog初始化半透明层、改变阴隐层

/**
         * 初始化半透明层
         * @param {Object} resizable
         * @param {Object} dialog
         * @param {Object} target
         */
        initResize:function(resizable, dialog,target) {
            $("body").css("cursor", target + "-resize");
            resizable.css({
                top: $(dialog).css("top"),
                left: $(dialog).css("left"),
                height:$(dialog).css("height"),
                width:$(dialog).css("width")
            });
            resizable.show();
        },
        /**
         * 改变阴隐层
         * @param {Object} target
         * @param {Object} options
         */
        repaint:function(target,options){
            var shadow = $("div.shadow");
            if(target != "w" && target != "e") {
                shadow.css("height", shadow.outerHeight() + options.tmove);
                $(".shadow_c", shadow).children().andSelf().each(function(){
                    $(this).css("height", $(this).outerHeight() + options.tmove);
                });
            }
            if(target == "n" || target =="nw" || target == "ne") {
                shadow.css("top", options.otop - 2);
            }
            if(options.owidth && (target != "n" || target != "s")) {
                shadow.css("width", options.owidth + 8);
            }
            if(target.indexOf("w") >= 0) {
                shadow.css("left", options.oleft - 4);
            }
        },
        /**
         * 改变左右拖动层的高度
         * @param {Object} target
         * @param {Object} tmove
         * @param {Object} dialog
         */
        resizeTool:function(target, tmove, dialog) {
            $("div[class^='resizable']", dialog).filter(function(){
                return $(this).attr("tar") == 'w' || $(this).attr("tar") == 'e';
            }).each(function(){
                $(this).css("height", $(this).outerHeight() + tmove);
            });
        },

相关文章:

  • 用老域名做新网站/网上推销产品的软件
  • 建站网址建设/外链网站
  • 咸阳b2c网站制作价格/杭州百度推广公司有几家
  • 安卓apk软件下载官网/企业seo排名优化
  • 网站优化怎么样/seo外包
  • wordpress 医院模板/微信管理系统
  • Spring入门-IOC/DI注解管理与整合mybatis及Junit(2)
  • 【操作系统】 第一章 操作系统概述
  • Java枚举类与注解
  • 【论文简述】High-Resolution Optical Flow from 1D Attention and Correlation(ICCV 2021)
  • 数据库面试题
  • 代码随想录第四天(203、707)
  • Go语言实现猜数字小游戏
  • 算法第十二期——BFS-判重
  • 机器学习实战4:基于马尔科夫随机场的图像分割(附Python代码)
  • 尚硅谷ES6李强笔记
  • 数据大佬的成长经验分享 | ​我的非典型数据分析之路
  • 使用动态输出打印内核的DEBUG信息