下面的代碼是爲style定義的。angular2:如何通過條件手動添加css文件到index.html?
<!-- for mobile -->
<link rel="stylesheet" href="/dist/css/mobile.css">
<!-- for desktop -->
<link rel="stylesheet" href="/dist/css/desktop.css">
我想在 'SRC/index.html的' 通過以上條件的文件添加到<頭>。
如何爲每個設備應用css文件?
如您所知,我無法在'index.html'中使用'條件'代碼。
請注意,我不會使用下面的方法。
// in angular-cli.json
"apps": [
{
"root": "src",
"index": "index.html",
"styles": [
"/dist/css/mobile.css",
"/dist/css/desktop.css"
]
}
]
// in component.ts
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrl: '/dist/css/mobile.css'
})
我期待您的建議。
謝謝。
非常感謝! – nasangW
謝謝你!你拯救我的日子! :) –
@nasangW如果答案幫助你,爲什麼你不把它標記爲真正幫助其他人尋找相同答案的正確答案,以知道這是正確的答案? –