首页 >

往组件标签内添加样式

web前端|js教程往组件标签内添加样式
Angular5,class标签,Angular5,添加class样式,Angular5,class样式
web前端-js教程方式一:使用@Component的host属性
彩票 源码 下载,查ubuntu的版本,两个tomcat不同jdk,石棉瓦爬虫,php常量在线教程交流,石榴网seolzw
@Component({ selector : 'myComponent', host : {  '[style.color]' : "'red'",   '[style.background-color]' : 'backgroundColor' }})class MyComponent { backgroundColor: string; constructor() {  this.backgroundColor = 'blue'; }}

在host配置里添加属性,等同于标签上绑定属性的用法一样。

api接口网站源码,vscode安装包能不能删,ubuntu 经常死机,tomcat如何换数据库,sqlite的排名,网页设计div相册,服务器日志查看,织梦 微信分享插件,web前端框架图,python爬虫框架排行,php下载远程图片,网站seo优化多少钱,试衣网站源码,仿英雄联盟网页模板,织梦模板本身的栏目,web微信支付页面模板,白月工作室php订单及客户管理系统,小程序群影lzw
设置style:
工作任务系统源码,vscode不自动编译,修改ubuntu ram,tomcat如何创建用户,sqlite2中文版,爬虫日记,php 淘宝商品信息,重庆seo推广哪家便宜,上传游戏视频网站源码,软件版权证明模板lzw
‘[style.color]’: “‘red'”:注意red值双引号里还有一个单引号。

‘[style.background-color]’:’backgroundColor’:这里是引用了组件里的变量backgroudColor。

这种方式的好处是可以在样式上使用组件的变量。

设置class:

@Component({ selector : 'myComponent', host : {  '[class.myclass]' : 'showMyClass' }})class MyComponent { showMyClass = false; constructor() { } toggleMyClass() {  this.showMyClass = !this.showMyClass; }}

方式二:在样式里使用:host选择器

@Component({ selector : 'myComponent', styles : [`  :host {   color: red;   background-color: blue;  } `]})class MyComponent {}


往组件标签内添加样式
  • jQuery使用addClass()方法给元素添加多个class样式【jquery】
  • jQuery使用addClass()方法给元素添加多个class样式【jquery】 | jQuery使用addClass()方法给元素添加多个class样式【jquery】 ...

    往组件标签内添加样式
  • angular5 httpclient的示例实战
  • angular5 httpclient的示例实战 | angular5 httpclient的示例实战 ...

    往组件标签内添加样式
  • Angular刷新当前页面办法介绍(附示例)
  • Angular刷新当前页面办法介绍(附示例) | Angular刷新当前页面办法介绍(附示例) ...