gpt4 book ai didi

css - 按下按钮后如何更改 styleurls 链接并保持这种状态

转载 作者:太空宇宙 更新时间:2023-11-04 01:26:01 26 4
gpt4 key购买 nike

我正在做一个 angular 2 元素,并试图包含一个设置主题。我创建了 3 个 component.scss 文件 red.component.scssyellow.component.scssblue.component.scss。我想做到这一点,以便根据用户从按钮输入的内容,component.ts 文件中的 styleURLS 随所选颜色相关的 scss 文件 url 发生变化。这可能吗?如何?还是有任何其他有效且简单的方法来实现这一目标?

最佳答案

你可以使用属性绑定(bind)

我的解决方案

//// in css file

.red {
color: red;
}

.yellow {
color: yellow;
}

.blue {
color: blue;
}

.green {
color: green;
}

/// in html

<div [class.red]="isRed" [class.yellow]="isYellow" [class.blue]="isblue" [class.green]="isGreen" ></div>

//// and isRed, isBlue ... are boolean in ts file

关于css - 按下按钮后如何更改 styleurls 链接并保持这种状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48088630/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com