📜  Angular PrimeNG 工具提示组件

📅  最后修改于: 2022-05-13 01:56:31.361000             🧑  作者: Mango

Angular PrimeNG 工具提示组件

Angular PrimeNG 是一个开源框架,具有丰富的原生 Angular UI 组件集,可用于出色的样式,并且该框架用于非常轻松地制作响应式网站。在本文中,我们将了解如何在 Angular PrimeNG 中使用 Tooltip 组件。我们还将了解将在代码中使用的属性、样式以及它们的语法。

工具提示组件: It 用于制作为组件提供咨询信息的元素。

特性:

  • pTooltip:它是工具提示的文本。它是字符串数据类型,默认值为空。
  • tooltipPosition:它是工具提示的位置。它是字符串数据类型,默认值是正确的。
  • tooltipEvent:显示工具提示的事件。它是字符串数据类型,默认值为悬停。
  • positionStyle:表示 CSS 位置类型的文本。它是字符串数据类型,默认值为绝对值。
  • tooltipDisabled:用于指定是否禁用组件。它是布尔数据类型,默认值为 false。
  • appendTo:用于指定附加叠加层的目标元素。它是字符串数据类型,默认值为任意。
  • hideDelay:隐藏工具提示的延迟,以毫秒为单位。它是数字数据类型,默认值为空。
  • showDelay:显示工具提示的延迟时间,以毫秒为单位。它是数字数据类型,默认值为空。
  • life:即使工具提示处于活动状态,也需要等待以毫秒为单位隐藏工具提示。它是数字数据类型,默认值为空。
  • tooltipStyleClass:工具提示的样式类。它是字符串数据类型,默认值为空。
  • escape:用于指定内容是否呈现为文本。它是布尔数据类型,默认值为 true。
  • tooltipZIndex:用于指定是否自动管理z-index。它是字符串数据类型,默认值为自动。

造型:

  • p-tooltip:它是容器元素。
  • p-tooltip-arrow:工具提示的箭头
  • p-tooltip-text:工具提示的文本

创建 Angular 应用程序和模块安装:

  • 第 1 步:使用以下命令创建一个 Angular 应用程序。
ng new appname
  • 第 2 步:创建项目文件夹(即 appname)后,使用以下命令移动到该文件夹。
cd appname
  • 第 3 步:在给定目录中安装 PrimeNG。
npm install primeng --save
npm install primeicons --save

项目结构:它将如下所示:

示例 1:这是说明如何在 Tooltip 组件中实现焦点事件以显示和模糊以隐藏的基本示例。

app.component.html

GeeksforGeeeks

PrimeNG Tooltip Component
  
       
  
       


app.component.ts
import { Component } from '@angular/core';
  
@Component({
  selector: 'mt-app',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.scss']
})
export class AppComponent {}


app.module.ts
import { NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";
import { BrowserAnimationsModule } 
    from "@angular/platform-browser/animations";
  
import { AppComponent } from "./app.component";
import { TooltipModule } from "primeng/tooltip";
import { InputTextModule } from "primeng/inputtext";
  
@NgModule({
  imports: [
    BrowserModule,
    BrowserAnimationsModule,
    TooltipModule,
    InputTextModule,
  ],
  declarations: [AppComponent],
  bootstrap: [AppComponent],
})
export class AppModule {}


app.component.html

GeeksforGeeeks

PrimeNG Tooltip Component
  
       
  
            


app.component.ts
import { Component } from '@angular/core';
  
@Component({
  selector: 'mt-app',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.scss']
})
export class AppComponent {}


app.module.ts
import { NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";
import { BrowserAnimationsModule } 
    from "@angular/platform-browser/animations";
  
import { AppComponent } from "./app.component";
import { TooltipModule } from "primeng/tooltip";
import { ButtonModule } from "primeng/button";
  
@NgModule({
  imports: [
    BrowserModule,
    BrowserAnimationsModule,
    TooltipModule,
    ButtonModule,
  ],
  declarations: [AppComponent],
  bootstrap: [AppComponent],
})
export class AppModule {}


app.component.ts

import { Component } from '@angular/core';
  
@Component({
  selector: 'mt-app',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.scss']
})
export class AppComponent {}

app.module.ts

import { NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";
import { BrowserAnimationsModule } 
    from "@angular/platform-browser/animations";
  
import { AppComponent } from "./app.component";
import { TooltipModule } from "primeng/tooltip";
import { InputTextModule } from "primeng/inputtext";
  
@NgModule({
  imports: [
    BrowserModule,
    BrowserAnimationsModule,
    TooltipModule,
    InputTextModule,
  ],
  declarations: [AppComponent],
  bootstrap: [AppComponent],
})
export class AppModule {}

输出:

示例 2:在此示例中,我们将使用工具提示组件 在一个按钮中。

app.component.html

GeeksforGeeeks

PrimeNG Tooltip Component
  
       
  
            

app.component.ts

import { Component } from '@angular/core';
  
@Component({
  selector: 'mt-app',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.scss']
})
export class AppComponent {}

app.module.ts

import { NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";
import { BrowserAnimationsModule } 
    from "@angular/platform-browser/animations";
  
import { AppComponent } from "./app.component";
import { TooltipModule } from "primeng/tooltip";
import { ButtonModule } from "primeng/button";
  
@NgModule({
  imports: [
    BrowserModule,
    BrowserAnimationsModule,
    TooltipModule,
    ButtonModule,
  ],
  declarations: [AppComponent],
  bootstrap: [AppComponent],
})
export class AppModule {}

输出:

参考: https://primefaces.org/primeng/showcase/#/tooltip