• 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
  • 相关阅读:
    NIO单一长连接——dubbo通信模型实现
    小谈网络游戏同步
    网络游戏同步问题综述
    TortoiseSVN客户端重新设置用户名和密码
    SVN服务器搭建和使用(三)
    SVN服务器搭建和使用(二)
    SVN服务器搭建和使用(一)
    Firefly 流程架构
    unity3d 手机震动
    Unity AssetBundle爬坑手记
  • 原文地址:https://www.cnblogs.com/huangmin1992/p/11131972.html
Copyright © 2020-2023  润新知