• Angular2 Use styles in Component


    1 内联样式

    /**
     * Created by Administrator on 2015/7/23.
     */
    import {Component, View, NgIf} from 'angular2/angular2';
    
    @Component({
        selector: 'ng-test',
        properties: ['showElement']
    })
    
    @View({
        styles:['div.normal-text{100px;height:50px;border:1px solid gray;}'],
        template: `<div class="normal-text">ngff-test</div><div *ng-if="showElement">hide-element</div>`,
        directives: [NgIf]
    })
    
    export class NgTest {
        //showElement:boolean;
    
        constructor() {
            //this.showElement = true;
        }
    }
    

    2 外部文件 use styleUrls:['','','']

    /**
     * Created by Administrator on 2015/7/23.
     */
    import {Component, View, NgIf} from 'angular2/angular2';
    
    @Component({
        selector: 'ng-test',
        properties: ['showElement']
    })
    
    @View({
        styleUrls:['../../css/index.css'],
        template: `<div class="normal-text">ngff-test</div><div *ng-if="showElement">hide-element</div>`,
        directives: [NgIf]
    })
    
    export class NgTest {
        //showElement:boolean;
    
        constructor() {
            //this.showElement = true;
        }
    }
    

      

  • 相关阅读:
    第九章 类的定义属性和方法
    第八章 函数作用域
    第七章 函数基础
    第六章 控制流程
    Http请求
    Django学习之-带参数的路由应用
    Django学习之--Ajax
    第二章:Django项目实例
    第一章:Django简介
    pytest汇总
  • 原文地址:https://www.cnblogs.com/lihaozhou/p/4677138.html
Copyright © 2020-2023  润新知