• angular-ng-zorro,自定义模态窗拖动指令


    import { Directive, ElementRef, Renderer2, AfterViewInit } from '@angular/core';
    @Directive({
      selector: '[appDragModal]'
    })
    export class DragModalDirective implements AfterViewInit {
      private canMove: boolean = false;
      private modalX: number = 0;
      private modalY: number = 0;
      private mouseDownX: number = 0;
      private mouseDownY: number = 0;
      private distX: number = 0;
      private distY: number = 0;
      constructor(private elementRef: ElementRef, private render: Renderer2) {
      }
      ngAfterViewInit() {
        let modalElement = this.getModalElement();
        let modalTitleElement = this.getModalTitleElment();
        console.log(modalElement)
        console.log(modalTitleElement);
        this.render.listen(modalTitleElement, 'mousedown', function (event) {
          this.mouseDownX = event.clientX;
          this.mouseDownY = event.clientY;
          this.modalX = modalElement.offsetLeft;
          this.modalY = modalElement.offsetTop;
          this.distX = event.clientX - modalElement.offsetLeft;
          this.distY = event.clientY - modalElement.offsetTop;
          this.render.setStyle(modalElement, "position", "absolute");
          this.render.setStyle(modalElement, "top", `${this.modalY}px`);
          this.render.setStyle(modalElement, "left", `${this.modalX}px`);
          this.canMove = true;
        }.bind(this));
        this.render.listen(modalTitleElement, 'mouseup', function (event) {
          this.canMove = false;
        }.bind(this));
        this.render.listen(this.elementRef.nativeElement, 'mousemove', function (event) {
          if (this.canMove) {
            let moveX = event.clientX - this.distX;
            let moveY = event.clientY - this.distY;
            const modalWidth = modalElement.offsetWidth;
            const modalHeight = modalElement.offsetHeight;
            const cw = document.documentElement.clientWidth;
            const cy = document.documentElement.clientHeight;
    
            if (moveY < 0) {
              moveY = 0;
            } else if (moveY > cy - modalHeight) {
              moveY = cy - modalHeight;
            }
    
            if (moveX < 0) {
              moveX = 0;
            } else if (moveX > cw - modalWidth) {
              moveX = cw - modalWidth;
            }
    
            this.render.setStyle(modalElement, "top", `${moveY}px`);
            this.render.setStyle(modalElement, "left", `${moveX}px`);
            this.render.setStyle(modalElement, "cursor", `move`);
          }
        }.bind(this));
      }
      getModalElement() {
        return this.elementRef.nativeElement.querySelector('.ant-modal');
      }
      getModalTitleElment() {
        console.log(this.elementRef.nativeElement)
        return this.elementRef.nativeElement.querySelector('.ant-modal-content');
      }
    
    }
    View Code
  • 相关阅读:
    java 类加载机制总结
    栈和队列的java简单实现
    java内存模型个人理解总结
    Day12-微信小程序实战-交友小程序-搭建服务器与上传文件到后端并控制云开发数据库-项目总结与github代码发布流程(附上项目全部完整代码学习使用)
    Day12-微信小程序实战-交友小程序-优化“附近的人”页面与serach组件的布局和样式以及搜索历史记录和本地缓存*内附代码)
    CSS-好玩的样式(用高斯模糊制作平缓突起)
    Day18-PHP-入门2
    Day18-PHP-入门1
    Day17-JS-jQuery
    Day17-JS进阶-线程机制和事件机制
  • 原文地址:https://www.cnblogs.com/huangmin1992/p/11131972.html
Copyright © 2020-2023  润新知