Ngx-Bootstrap - เคล็ดลับเครื่องมือ
ngx-bootstrap คอมโพเนนต์ Tooltip ที่ใช้งานง่ายและกำหนดค่าได้สูง
TooltipDirective
ตัวเลือก
[เคล็ดลับเครื่องมือ], [tooltipHtml]
อินพุต
adaptivePosition - บูลีนตั้งค่าปิดใช้งานตำแหน่งที่ปรับได้
container - สตริงตัวเลือกที่ระบุองค์ประกอบที่คำแนะนำเครื่องมือควรต่อท้าย
containerClass - สตริงคลาส Css สำหรับคอนเทนเนอร์คำแนะนำเครื่องมือ
delay - หมายเลขล่าช้าก่อนที่จะแสดงคำแนะนำเครื่องมือ
isDisabled - บูลีนอนุญาตให้ปิดคำแนะนำเครื่องมือ
isOpen - บูลีนส่งกลับว่าคำแนะนำเครื่องมือกำลังแสดงอยู่หรือไม่
placement- สตริงตำแหน่งของคำแนะนำเครื่องมือ ยอมรับ: "top", "bottom", "left", "right"
tooltip- สตริง | TemplateRef <any> เนื้อหาที่จะแสดงเป็นคำแนะนำเครื่องมือ
tooltipAnimation - บูลีนค่าเริ่มต้น: จริง
tooltipAppendToBody - บูลีน
tooltipClass - สตริง
tooltipContext - ใด ๆ
tooltipEnable - บูลีน
tooltipFadeDuration - ตัวเลขค่าเริ่มต้น: 150
tooltipHtml- สตริง | TemplateRef <any>
tooltipIsOpen - บูลีน
tooltipPlacement - สตริง
tooltipPopupDelay - หมายเลข
tooltipTrigger- สตริง | สตริง []
triggers- สตริงระบุเหตุการณ์ที่ควรทริกเกอร์ รองรับรายการชื่อเหตุการณ์ที่คั่นด้วยช่องว่าง
เอาท์พุต
onHidden - ปล่อยเหตุการณ์เมื่อคำแนะนำเครื่องมือถูกซ่อนอยู่
onShown - แสดงเหตุการณ์เมื่อคำแนะนำเครื่องมือแสดงขึ้น
tooltipChange - เริ่มทำงานเมื่อเนื้อหาคำแนะนำเครื่องมือเปลี่ยนแปลง
tooltipStateChanged - เริ่มทำงานเมื่อสถานะคำแนะนำเครื่องมือเปลี่ยนไป
ตัวอย่าง
ในขณะที่เรากำลังจะใช้ Tooltip เราจะต้องอัปเดต app.module.ts ที่ใช้ในตอน ngx-bootstrap TimePickerเพื่อใช้TooltipModule.
อัปเดต app.module.ts เพื่อใช้ TooltipModule
app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { AppComponent } from './app.component';
import { TestComponent } from './test/test.component';
import { AccordionModule } from 'ngx-bootstrap/accordion';
import { AlertModule,AlertConfig } from 'ngx-bootstrap/alert';
import { ButtonsModule } from 'ngx-bootstrap/buttons';
import { FormsModule } from '@angular/forms';
import { CarouselModule } from 'ngx-bootstrap/carousel';
import { CollapseModule } from 'ngx-bootstrap/collapse';
import { BsDatepickerModule, BsDatepickerConfig } from 'ngx-bootstrap/datepicker';
import { BsDropdownModule,BsDropdownConfig } from 'ngx-bootstrap/dropdown';
import { PaginationModule,PaginationConfig } from 'ngx-bootstrap/pagination';
import { PopoverModule, PopoverConfig } from 'ngx-bootstrap/popover';
import { ProgressbarModule,ProgressbarConfig } from 'ngx-bootstrap/progressbar';
import { RatingModule, RatingConfig } from 'ngx-bootstrap/rating';
import { SortableModule, DraggableItemService } from 'ngx-bootstrap/sortable';
import { TabsModule, TabsetConfig } from 'ngx-bootstrap/tabs';
import { TimepickerModule } from 'ngx-bootstrap/timepicker';
import { TooltipModule } from 'ngx-bootstrap/tooltip';
@NgModule({
declarations: [
AppComponent,
TestComponent
],
imports: [
BrowserAnimationsModule,
BrowserModule,
AccordionModule,
AlertModule,
ButtonsModule,
FormsModule,
CarouselModule,
CollapseModule,
BsDatepickerModule.forRoot(),
BsDropdownModule,
ModalModule,
PaginationModule,
PopoverModule,
ProgressbarModule,
RatingModule,
SortableModule,
TabsModule,
TimepickerModule.forRoot(),
TooltipModule.forRoot()
],
providers: [AlertConfig,
BsDatepickerConfig,
BsDropdownConfig,
BsModalService,
PaginationConfig,
ProgressbarConfig,
RatingConfig,
DraggableItemService,
TabsetConfig],
bootstrap: [AppComponent]
})
export class AppModule { }
อัปเดต test.component.html เพื่อใช้คอมโพเนนต์ timepicker
test.component.html
<timepicker [(ngModel)]="time"></timepicker>
<pre class="alert alert-info">Time is: {{time}}</pre>
<timepicker [(ngModel)]="time" [showMeridian]="false"></timepicker>
<pre class="alert alert-info">Time is: {{time}}</pre>
อัปเดต test.component.ts สำหรับตัวแปรและวิธีการที่เกี่ยวข้อง
test.component.ts
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-test',
templateUrl: './test.component.html',
styleUrls: ['./test.component.css']
})
export class TestComponent implements OnInit {
time: Date = new Date();
constructor() {}
ngOnInit(): void {
}
}
สร้างและให้บริการ
รันคำสั่งต่อไปนี้เพื่อเริ่มเซิร์ฟเวอร์เชิงมุม
ng serve
เมื่อเซิร์ฟเวอร์เริ่มทำงาน เปิด http: // localhost: 4200 คลิกที่ปุ่ม Open modal และตรวจสอบผลลัพธ์ต่อไปนี้