码迷,mamicode.com
首页 > 其他好文 > 详细

Angular8.1.0基础---组件样式绑定

时间:2019-08-28 11:25:56      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:ret   this   size   weight   angular   work   obj   sso   str   

1,绑定一个class名

    <p [class.isActive]="boolean">
        p element works!
    </p>


也可 <p [class.isActive]="fn()">

           p element works!

        </p>

       fn(){

         return boolean

      }

2,绑定多个class名 (ngClass)


     <span [ngClass]="classObj">

        this is span

     </span>

     classObj:Object={

       className1:boolean,

       className2:boolean

     }

 

3,通过style绑定
   <div [style.color]="boolean"  ?  ‘red‘  :  ‘yellow‘ ">

       this is div

    </div>

 

4,绑定多个style(ngStyle)

   <div [ngStyle]="styleObj ">

       this is div

    </div>

 

styleObj :Object={

   ‘font-style‘: boolean ? ‘italic‘ : ‘normal‘,

   ‘font-weight‘: boolean  ? ‘bold‘ : ‘normal‘,

   ‘font-size‘:boolean ? ‘24px‘ : ‘12px‘

}

 

Angular8.1.0基础---组件样式绑定

标签:ret   this   size   weight   angular   work   obj   sso   str   

原文地址:https://www.cnblogs.com/jsxyz/p/11422461.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!