亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Angular中怎么以Tooltip自定義指令

發布時間:2022-04-13 12:00:15 來源:億速云 閱讀:124 作者:iii 欄目:web開發

本文小編為大家詳細介紹“Angular中怎么以Tooltip自定義指令”,內容詳細,步驟清晰,細節處理妥當,希望這篇“Angular中怎么以Tooltip自定義指令”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

Angular中怎么以Tooltip自定義指令


效果圖如下:

Angular中怎么以Tooltip自定義指令

目錄結構

在上一篇文章的實現的代碼項目基礎上,執行命令行:

# 進入 directives 文件夾
$ cd directives

# 創建 tooltip 文件夾
$ mkdir tooltip

# 進入 tooltip 文件夾
$ cd tooltip

# 創建 tooltip 組件
$ ng generate component tooltip

# 創建 tooltip 指令
$ ng generate directive tooltip

執行完上面的命令行之后,你會得到 app/directive/tooltip 的文件目錄結構如下:

tooltip
├── tooltip                                           // tooltip 組件
│    ├── user-list.component.html                     // 頁面骨架
│    ├── user-list.component.scss                     // 頁面獨有樣式
│    ├── user-list.component.spec.ts                  // 測試文件
│    └── user-list.component.ts                       // javascript 文件
├── tooltip.directive.spec.ts                         // 測試文件
└── tooltip.directive.ts                              // 指令文件

嗯,這里我將組件放在 tooltip 的同級,主要是方便管理。當然,這個因人而異,你可以放在公共組件 components 文件夾內。

編寫 tooltip 組件

html 文件中,有:

<div class="caret"></div>
<div class="tooltip-content">{{data.content}}</div>

在樣式文件 .scss 中,有:

$black: #000000;
$white: #ffffff;
$caret-size: 6px;
$tooltip-bg: transparentize($black, 0.25); // transparentize 是 sass 的語法
$grid-gutter-width: 30px;
$body-bg-color: $white;
$app-anim-time: 200ms;
$app-anim-curve: ease-out;
$std-border-radius: 5px;
$zindex-max: 100;

// :host 偽類選擇器,給組件元素本身設置樣式
:host {
  position: fixed;
  padding: $grid-gutter-width/3 $grid-gutter-width/2;
  background-color: $tooltip-bg;
  color: $body-bg-color;
  opacity: 0;
  transition: all $app-anim-time $app-anim-curve;
  text-align: center;
  border-radius: $std-border-radius;
  z-index: $zindex-max;
}

.caret { // 脫字符
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid $tooltip-bg;
  position: absolute;
  top: -$caret-size;
  left: 50%;
  margin-left: -$caret-size/2;
  border-bottom-color: $tooltip-bg;
}

嗯~,css 是一個神奇的東西,之后會安排一篇文章來講解下 sass 相關的內容...

然后,在 javascript 文件 tooltip.component.ts 內容如下:

import { 
  Component, 
  ElementRef, // 元素指向
  HostBinding, 
  OnDestroy, 
  OnInit 
} from '@angular/core';

@Component({
  selector: 'app-tooltip', // 標識符,表明我這個組件叫做啥,這里是 app-tooltip
  templateUrl: './tooltip.component.html', // 本組件的骨架
  styleUrls: ['./tooltip.component.scss'] // 本組件的私有樣式
})
export class TooltipComponent implements OnInit {

  public data: any; // 在 directive 上賦值
  private displayTimeOut:any;

  // 組件本身 host 綁定相關的裝飾器
  @HostBinding('style.top')  hostStyleTop!: string;
  @HostBinding('style.left') hostStyleLeft!: string;
  @HostBinding('style.opacity') hostStyleOpacity!: string;

  constructor(
    private elementRef: ElementRef
  ) { }

  ngOnInit(): void {
    this.hostStyleTop = this.data.elementPosition.bottom + 'px';

    if(this.displayTimeOut) {
      clearTimeout(this.displayTimeOut)
    }

    this.displayTimeOut = setTimeout((_: any) => {
      // 這里計算 tooltip 距離左側的距離,這里計算公式是:tooltip.left + 目標元素的.width - (tooltip.width/2)
      this.hostStyleLeft = this.data.elementPosition.left + this.data.element.clientWidth / 2 - this.elementRef.nativeElement.clientWidth / 2 + 'px'
      this.hostStyleOpacity = '1';
      this.hostStyleTop = this.data.elementPosition.bottom + 10 + 'px'
    }, 500)
  }
  
  
  // 組件銷毀
  ngOnDestroy() {
    // 組件銷毀后,清除定時器,防止內存泄露
    if(this.displayTimeOut) {
      clearTimeout(this.displayTimeOut)
    }
  }
}

編寫 tooltip 指令

這是本文的重點,具體的說明,我在代碼上標注出來~

相關的文件 tooltip.directive.ts 內容如下:

import { 
  ApplicationRef, // 全局性調用檢測
  ComponentFactoryResolver, // 創建組件對象
  ComponentRef, // 組件實例的關聯和指引,指向 ComponentFactory 創建的元素
  Directive, ElementRef, 
  EmbeddedViewRef, // EmbeddedViewRef 繼承于 ViewRef,用于表示模板元素中定義的 UI 元素。
  HostListener, // DOM 事件監聽
  Injector, // 依賴注入
  Input 
} from '@angular/core';

import { TooltipComponent } from './tooltip/tooltip.component';

@Directive({
  selector: '[appTooltip]'
})
export class TooltipDirective {
  @Input("appTooltip") appTooltip!: string;

  private componentRef!: ComponentRef<TooltipComponent>;

  // 獲取目標元素的相關位置,比如 left, right, top, bottom
  get elementPosition() {
    return this.elementRef.nativeElement.getBoundingClientRect(); 
  }

  constructor(
    protected elementRef: ElementRef,
    protected appRef: ApplicationRef,
    protected componentFactoryResolver: ComponentFactoryResolver,
    protected injector: Injector
  ) { }

  // 創建 tooltip
  protected createTooltip() {
    this.componentRef = this.componentFactoryResolver
      .resolveComponentFactory(TooltipComponent) // 綁定 tooltip 組件
      .create(this.injector);

    this.componentRef.instance.data = { // 綁定 data 數據
      content: this.appTooltip,
      element: this.elementRef.nativeElement,
      elementPosition: this.elementPosition
    }

    this.appRef.attachView(this.componentRef.hostView); // 添加視圖
    const domElem = (this.componentRef.hostView as EmbeddedViewRef<any>).rootNodes[0] as HTMLElement;
    document.body.appendChild(domElem);
  }
  
  // 刪除 tooltip
  protected destroyTooltip() {
    if(this.componentRef) {
      this.appRef.detachView(this.componentRef.hostView); // 移除視圖
      this.componentRef.destroy();
    }
  }
  
  // 監聽鼠標移入
  @HostListener('mouseover')
  OnEnter() {
    this.createTooltip();
  }
    
  // 監聽鼠標移出
  @HostListener('mouseout')
  OnOut() {
    this.destroyTooltip();
  }

}

到這里,已經完成了 99% 的功能了,下面我們在頁面上調用即可。

頁面上調用

我們在 user-list.component.html 上添加下面的內容:

<p style="margin-top: 100px;">
  <!-- [appTooltip]="'Hello Jimmy'" 是重點 -->
  <span 
    [appTooltip]="'Hello Jimmy'" 
    style="margin-left: 200px; width: 160px; text-align: center; padding: 20px 0; display: inline-block; border: 1px solid #999;"
  >Jimmy</span>
</p>

TooltipDirective 這個指令我們已經在 app.module.ts 上進行聲明,我們直接調用即可。目前的效果如下:

Angular中怎么以Tooltip自定義指令

我們實現的 tooltip 是底部居中展示,也就是我們平常使用框架,比如 angular ant designtooltipbottom 屬性。對于其他屬性,讀者感興趣的話,可以進行擴展。

讀到這里,這篇“Angular中怎么以Tooltip自定義指令”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

鱼台县| 印江| 霍邱县| 蓝田县| 会同县| 萍乡市| 仁布县| 上高县| 石泉县| 建瓯市| 西安市| 积石山| 罗山县| 剑川县| 盐山县| 宁陵县| 罗田县| 茶陵县| 宁南县| 乌鲁木齐市| 龙岩市| 江西省| 南汇区| 安吉县| 蛟河市| 乌审旗| 九台市| 庄河市| 屯门区| 红原县| 嵊泗县| 和平区| 建水县| 辉南县| 安龙县| 鸡东县| 牟定县| 外汇| 安化县| 新源县| 遂平县|