国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

Angular2.0實現(xiàn)modal對話框的方法示例

2019-11-19 14:20:51
字體:
供稿:網(wǎng)友

本文實例講述了Angular2.0實現(xiàn)modal對話框的方法。分享給大家供大家參考,具體如下:

覺得寫的比較巧妙的就是樣式的選取~記錄下

CSS部分

.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部分

<div [id]="id" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content ky-modal-content">  <div 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>  </div>  <div class="modal-body ky-modal-body vertical-align-center">  <div>   <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>  </div>  </div>  <div 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>  </div> </div> </div></div>

JS部分

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(); }}

更多關于AngularJS相關內(nèi)容感興趣的讀者可查看本站專題:《AngularJS指令操作技巧總結》、《AngularJS入門與進階教程》及《AngularJS MVC架構總結

希望本文所述對大家AngularJS程序設計有所幫助。

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 湄潭县| 巫山县| 徐闻县| 镇宁| 黄龙县| 天镇县| 钟祥市| 永福县| 庆安县| 拜城县| 玉环县| 广饶县| 金塔县| 海城市| 清徐县| 黎城县| 乌海市| 临清市| 德安县| 光山县| 班玛县| 龙川县| 平遥县| 泉州市| 木里| 玉山县| 平塘县| 都江堰市| 肃南| 宁乡县| 杨浦区| 呼伦贝尔市| 赣榆县| 汉中市| 沽源县| 岳普湖县| 伊春市| 新河县| 吉隆县| 锡林浩特市| 太保市|