• jq弹窗拖动改变宽高


    预览效果

    在这里插入图片描述

    <div class='tishiMask'>
    	<div class="tishiEm">
    		<div id="coor"></div>
    		<div class="topNew ismove">
    			<span class="ismove">提示</span>
    			<p onclick="closeTishi()">×</p>
    		</div>
    		<div class="bottomNew">
    			<p>提示文字软件</p>
    			<div class="newDesignBtn">
    				<input type="button" value="确定" class="btnLeft" onclick="closeTishi()" >
    				<input type="button" value="取消" onclick="closeTishi(this)" class="btnRight">
    			</div>
    		</div>
    	</div>
    </div>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    .tishiMask{
    	width: 100%;
    	height: 100%;
    	position: fixed;
    	top: 0;
    	left: 0;
    	background-color: rgba(0, 0, 0, .18);
    	display: block;
    	z-index: 99999;
    }
    .tishiEm {
    	z-index: 99999;
    	/* display: none; */
    	/* -webkit-transition: -webkit-box-shadow .2s; */
    	/* transition: box-shadow .2s; */
    	position: fixed;
    	height: 220px;
    	width: 300px;
    	top: 38%;
    	/* margin-top: -100px; */
    	left: 43%;
    	/* margin-left: -150px; */
    	background: #fff;
    	border-radius: 5px 5px 0px 0px;
    	-webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.4);
    	box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.4);
    	/* -webkit-transition: -webkit-box-shadow .2s; */
    	/* transition: box-shadow .2s; */
    	/* transition: all .4s; */
    	/* -webkit-transition: all .4s; */
    	/* -moz-transition: all .4s; */
    }
    
    .tishiEm .topNew {
    	overflow: hidden;
    	background-image: linear-gradient(183deg, #3d95ea 0%, #70b0e6 100%);
    	border-radius: 5px 5px 0px 0px;
    }
    
    .tishiEm .topNew span {
    	color: #fff;
    	font-size: 12px;
    	height: 34px;
    	line-height: 34px;
    	display: block;
    	float: left;
    	margin-left: 10px;
    }
    
    .tishiEm .topNew p {
    	float: right;
    	color: #fff;
    	font-size: 20px;
    	height: 34px;
    	line-height: 34px;
    	display: block;
    	margin-right: 10px;
    	cursor: pointer;
    }
    
    .tishiEm .bottomNew {
    	margin: 0px 0px;
    }
    
    .tishiEm .bottomNew {
    	text-align: center;
    }
    
    .tishiEm .bottomNew p {
    	font-size: 12px;
    	height: 20px;
    	line-height: 20px;
    }
    .tishiEm .bottomNew .newDesignBtn {
    	overflow: hidden;
    	width: 100%;
    	height: auto;
    	display: flex;
    	justify-content: flex-end;
    	align-items: center;
    	position: absolute;
    	bottom: 10px;
    	left: 0;
    }
    
    .tishiEm .bottomNew .newDesignBtn .btnLeft {
    	display: block;
    	float: left;
    	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.22);
    	background: #5da2e5;
    	color: #fff;
    	font-size: 12px;
    	width: auto;
    	text-align: center;
    	height: 24px;
    	line-height: 24px;
    	border-radius: 4px;
    	border: none;
    	cursor: pointer;
    	padding: 0px 14px;
    	border: 1px solid #5da2e5;
    }
    
    .tishiEm .bottomNew .newDesignBtn .btnLeft:hover {
    	background: #1a78d9;
    	border: 1px solid #0069b8;
    	color: #fff;
    }
    
    .tishiEm .bottomNew .newDesignBtn .btnRight {
    	display: block;
    	float: left;
    	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.22);
    	background: #dcdcdc;
    	color: #383838;
    	font-size: 12px;
    	width: auto;
    	text-align: center;
    	height: 24px;
    	line-height: 24px;
    	border-radius: 4px;
    	margin-right: 28px;
    	margin-left: 10px;
    	border: none;
    	cursor: pointer;
    	padding: 0px 14px;
    	border: 1px solid #dcdcdc;
    }
    
    .tishiEm .bottomNew .newDesignBtn .btnRight:hover {
    	background: #c4c4c4;
    	color: #383838;
    	border: 1px solid #aaa;
    }
    #coor, #coor_set, #coor_syt {
    	width: 20px;
    	height: 20px;
    	overflow: hidden;
    	cursor: se-resize;
    	position: absolute;
    	right: 0;
    	bottom: 0;
    	/* background-color: #09c; */
    	background: url(./../images/scale.png);
    	background-size: 100% 100%;
    	transform: rotate(270deg);
    	z-index: 999;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148

    类名tishiEm设置宽高为缩小最小宽高。

    注意下方js注释

    $(function () {
        $(document).mousemove(function (e) {
    
            if (!!this.move_gy) {
    
                var posix_gy = !document.move_target_gy ? { 'x': 0, 'y': 0 } : document.move_target_gy.posix_gy,
                    callback_gy = document.call_down_gy || function () {
                        let viewWidth = $(document).width();
                        let maxLeft = viewWidth - $(".tishiEm").width();   // 左侧最大移动量
    
                        let viewHeight = $(document).height();
                        let maxHeight = viewHeight - $(".tishiEm").height();   // 底部最大移动量
    
                        let currentTop = e.pageY - posix_gy.y;
                        let currentLeft = e.pageX - posix_gy.x;
    
                        if (currentTop <= 0 || currentLeft <= 0 || currentLeft >= maxLeft || currentTop >= maxHeight) {
                            return
                        } else {
                            $(this.move_target_gy).offset({
                                'top': currentTop,
                                'left': currentLeft
                            });
                        }
                    };
    
                callback_gy.call(this, e, posix_gy);
            }
    
    
        }).mouseup(function (e) {
            if (!!this.move_gy) {
                var callback_gy = document.call_up_gy || function () {
                };
                callback_gy.call(this, e);
                $.extend(this, {
                    'move_gy': false,
                    'move_target_gy': null,
                    'call_down_gy': false,
                    'call_up_gy': false
                });
            }
        });
        var $box = $('.tishiEm').mousedown(function (e) {
            let offset = $(this).offset();
    
    
            this.posix_gy = { 'x': e.pageX - offset.left, 'y': e.pageY - offset.top };
            if (!$(e.target).hasClass('ismove')) {      // 只允许蓝色区域可拖动
                return;
            } else {
                $.extend(document, { 'move_gy': true, 'move_target_gy': this });
            }
    
    
        }).on('mousedown', '#coor', function (e) {
            var posix_gy = {
                'w': $box.width(),
                'h': $box.height(),
                'x': e.pageX,
                'y': e.pageY
            };
    
            $.extend(document, {
                'move_gy': true, 'call_down_gy': function (e) {
                	//下方为最小宽高  同步上方css
                    $box.css({
                        'width': Math.max(300, e.pageX - posix_gy.x + posix_gy.w),
                        'height': Math.max(220, e.pageY - posix_gy.y + posix_gy.h)
                    });
                }
            });
            return false;
        });
    });
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
  • 相关阅读:
    jQuery【jQuery树遍历、jQuery动画(一)、jQuery动画(二)】(四)-全面详解(学习总结---从入门到深化)
    持安科技亮相张江高科895创业营,总评分第三名荣获「最具创新性企业」!
    自然语言处理 Paddle NLP - 词向量应用展示
    Settings 笔记整理
    QT实现的截屏工具与录像功能
    GTS 中testPersistentProcessMemory fail 详解
    unity中压缩文件与解压文件
    动态调试python源码的步骤与案例
    数据分析 | Pandas 200道练习题,每日10道题,学完必成大神(7)
    基于布谷鸟算法优化的lssvm回归预测-附代码
  • 原文地址:https://blog.csdn.net/weixin_45343882/article/details/132881759