Elmish 应用程序:动态更改 <body> 样式
Elmish App: Change <body> style dynamically
版本
nuget Fable.Core ~> 3
nuget Fable.Elmish ~> 3
如何在 elmish 应用程序中更改 body 样式?
您可以通过Fable.Import.Browser
模块访问Dom。
例如尝试
open Fable.Import
Browser.document.body.style.fontSize <- "20px"
或
Browser.document.body.classList.add("my-class")
Browser.document.body.classList.remove("my-class")
版本
nuget Fable.Core ~> 3
nuget Fable.Elmish ~> 3
如何在 elmish 应用程序中更改 body 样式?
您可以通过Fable.Import.Browser
模块访问Dom。
例如尝试
open Fable.Import
Browser.document.body.style.fontSize <- "20px"
或
Browser.document.body.classList.add("my-class")
Browser.document.body.classList.remove("my-class")