How to implement modal dialog box in Angular2.0
This article mainly introduces the method of implementing the modal dialog box in Angular2.0, and analyzes the style, interface and functions of the modal dialog box in Angular2.0 based on examples. Friends who need it can refer to it
The example of this article describes the method of implementing modal dialog box in Angular2.0. Share it with everyone for your reference, the details are as follows:
I think the more clever writing is the selection of styles ~ record the
CSS part
.font { font-family: "Microsoft YaHei", Arial; font-size: 12px; color: #333333; } .ky-modal-content { min-width: 520px; min-height: 240px; } .ky-modal-header { /*height : 40px;*/ padding: 0 10px 0 10px; } .ky-modal-title { font-size: 16px; font-weight: 100; } .ky-modal-body { min-height: 110px; text-align: center; } .ky-modal-footer { height: 30px; border-top: 0; text-align: -webkit-center; } .ky-modal-message { padding-left: 3px; vertical-align: middle; } .ky-modal-icon { font-size: 16px; vertical-align: middle; } .ky-modal-question-icon { color:#ff8000; } .ky-modal-check-icon { color:green; } .ky-modal-exclamation-icon { color:red; } .ky-modal-close { outline: none; font-size: 30px; margin-top: 8px; font-weight: 100; vertical-align: -webkit-baseline-middle; } .vertical-align-center { display: flex; display: -webkit-box; display: -moz-box; -webkit-box-align: center; -moz-box-align: center; text-align: -webkit-center; }
HTML part
<p [id]="id" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true"> <p class="modal-dialog"> <p class="modal-content ky-modal-content"> <p class="modal-header ky-modal-header"> <button type="button" class="close ky-modal-close" data-dismiss="modal" aria-label="Close"> <span style="position: fixed;right: 10px;top:-6px" aria-hidden="true">×</span> </button> <h4 class="modal-title ky-modal-title" >{{title}}</h4> </p> <p class="modal-body ky-modal-body vertical-align-center"> <p> <span style="font-size:18px;"> <span style="color:#ff0000;"><i class="fa ky-modal-icon" [ngClass]="iconClass" aria-hidden="true"></i></span></span> <span class="ky-modal-message">{{message}}</span> </p> </p> <p class="modal-footer ky-modal-footer"> <ky-button [type]="conformButtonType" data-dismiss="modal" (click)="confirmButtonDown()">{{confirmText}}</ky-button> <ky-button [type]="'cancel'" data-dismiss="modal" (click)="cancelButtonDown()">{{cancelText}}</ky-button> </p> </p> </p> </p>
JS part
import { Component, Input, Output, EventEmitter, OnInit } from '@angular/core'; @Component({ moduleId: module.id, selector: 'ky-modal', styleUrls: ['./ky-modal.css'], templateUrl: './ky-modal.component.html', }) export class KyModalComponent implements OnInit { @Input() title:string = ''; @Input() type:string = ''; @Input() message:string = ''; @Input() confirmText:string = ''; @Input() cancelText:string = ''; @Input() id:string; @Input() conformButtonType:string; iconType ='question'; iconClass :any = {'fa-question-circle':false, 'fa-check-circle':false, 'fa-exclamation-circle':false}; typeList = ['question', 'check', 'exclamation']; @Output() actionButtonDown = new EventEmitter(); @Output() undoButtonDown = new EventEmitter(); cancelButtonDown() { this.undoButtonDown.emit('event'); } confirmButtonDown() { this.actionButtonDown.emit('event'); } determine() { let that = this; if(that.type && _.contains(that.typeList,that.type)) { that.iconType = that.type; } that.iconClass[`fa-${that.iconType}-circle`] = true; that.iconClass[`ky-modal-${that.iconType}-icon`] = true;</span> } ngOnInit() { this.determine(); } }
The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.
Related articles:
JQuery selects the selected value method of the select component
$set and array update method in vue.js_ vue.js
Vue and vue-i18n are combined to implement multi-language switching method of background data
The above is the detailed content of How to implement modal dialog box in Angular2.0. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Frequently Asked Questions and Solutions for Front-end Thermal Paper Ticket Printing In Front-end Development, Ticket Printing is a common requirement. However, many developers are implementing...

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

There is no absolute salary for Python and JavaScript developers, depending on skills and industry needs. 1. Python may be paid more in data science and machine learning. 2. JavaScript has great demand in front-end and full-stack development, and its salary is also considerable. 3. Influencing factors include experience, geographical location, company size and specific skills.

How to merge array elements with the same ID into one object in JavaScript? When processing data, we often encounter the need to have the same ID...

Learning JavaScript is not difficult, but it is challenging. 1) Understand basic concepts such as variables, data types, functions, etc. 2) Master asynchronous programming and implement it through event loops. 3) Use DOM operations and Promise to handle asynchronous requests. 4) Avoid common mistakes and use debugging techniques. 5) Optimize performance and follow best practices.

Discussion on the realization of parallax scrolling and element animation effects in this article will explore how to achieve similar to Shiseido official website (https://www.shiseido.co.jp/sb/wonderland/)...

In-depth discussion of the root causes of the difference in console.log output. This article will analyze the differences in the output results of console.log function in a piece of code and explain the reasons behind it. �...

Explore the implementation of panel drag and drop adjustment function similar to VSCode in the front-end. In front-end development, how to implement VSCode similar to VSCode...
