翻譯自:https://github.com/dojo/framework/blob/master/docs/en/styling/introduction.md
安順網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)建站!從網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、響應(yīng)式網(wǎng)站等網(wǎng)站項目制作,到程序開發(fā),運營維護。創(chuàng)新互聯(lián)建站公司2013年成立到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)建站。
Dojo 是基于 HTML 的技術(shù),使用 CSS 為框架中的元素和用它開發(fā)的應(yīng)用程序設(shè)置樣式。
Dojo 鼓勵將結(jié)構(gòu)樣式封裝在各部件中,以便最大限度復(fù)用;同時將外觀主題設(shè)置到應(yīng)用程序所有部件上。用戶為他們的應(yīng)用程序設(shè)置樣式和主題時,這種模式提供了固定的套路,即使混合使用 Dojo 的 @dojo/widgets
庫中的部件、由第三方提供的部件或者為特定應(yīng)用程序開發(fā)的內(nèi)部使用的部件時也是如此。
功能 | 描述 |
---|---|
為單個部件設(shè)置樣式 | CSS Modules 用于定義,在單個部件的作用域內(nèi)有效的樣式,避免潛在的交叉污染和樣式?jīng)_突。通過類型化的 CSS 模塊導(dǎo)入和 IDE 自動完成功能,部件可以精確的引用 CSS 類名。 |
強大的主題支持 | 可以輕松開發(fā)出支持主題的部件,這樣的部件既能使用簡化的、中心化的應(yīng)用程序主題,也能調(diào)整或覆蓋單個實例的目標(biāo)樣式(如果需要的話)。CLI 工具支持分發(fā)自定義主題。 |
響應(yīng)式的主題變更 | 與 Dojo 應(yīng)用程序中的其他響應(yīng)式狀態(tài)變更類似,當(dāng)一個部件或者整個應(yīng)用程序的主題發(fā)生變化時,只有受影響的部件才會重新渲染。 |
提取 CSS 屬性 | 每個 CSS 模塊可通過 CSS 自定義屬性和 var() 引用集中定義的 :root 樣式變量。 |
簡化定義第三方部件的主題 | 應(yīng)用程序可以輕松擴展主題以覆蓋第三方部件,如 Dojo 內(nèi)置部件庫中的部件,Dojo 也提供了開箱即用的主題,應(yīng)用程序可直接使用。CLI 工具極大簡化了主題的創(chuàng)建和組合。 |
注意:以下示例是按順序在前一個示例的基礎(chǔ)上構(gòu)建的。每個示例都盡量簡短,只突出顯示跟上一個示例相比發(fā)生變化的部分。
這些示例假定應(yīng)用程序名為:
package.json
{
"name": "my-app"
}
應(yīng)用程序名與部件主題的 key 有關(guān)。
src/styles/MyWidget.m.css
.root {
font-family: sans-serif;
}
src/widgets/MyWidget.tsx
import { create, tsx } from '@dojo/framework/core/vdom';
import * as css from '../styles/MyWidget.m.css';
const factory = create();
export default factory(function MyWidget() {
return My Widget;
});
theme
中間件theme.classes
返回主題化的 css 類名,這樣部件的默認樣式就會被主題覆蓋src/widgets/MyWidget.tsx
import { create, tsx } from '@dojo/framework/core/vdom';
import theme from '@dojo/framework/core/middleware/theme';
import * as css from '../styles/MyWidget.m.css';
const factory = create({ theme });
export default factory(function MyWidget({ middleware: { theme } }) {
const { root } = theme.classes(css);
return My Widget;
});
src/themes/MyTheme/MyWidget.m.css
.root {
color: hotpink;
background-color: slategray;
}
src/themes/MyTheme/theme.ts
import * as myWidgetCss from './MyWidget.m.css';
export default {
'my-app/MyWidget': myWidgetCss
};
variables.css
,其中定義了 CSS 自定義屬性var()
引用自定義屬性src/themes/variables.css
:root {
--foreground: hotpink;
--background: slategray;
}
src/themes/MyTheme/MyWidget.m.css
@import '../variables.css';
.root {
color: var(--foreground);
background-color: var(--background);
}
theme
中間件可用于設(shè)置應(yīng)用程序主題。要設(shè)置“默認的”或初始化主題,則使用 theme.set
函數(shù),同時用 theme.get
函數(shù)確定是否需要設(shè)置主題。應(yīng)該在應(yīng)用程序的頂級部件中設(shè)置默認主題。
src/App.tsx
import { create, tsx } from '@dojo/framework/core/vdom';
import theme from '@dojo/framework/core/middleware/theme';
import myTheme from '../themes/MyTheme/theme';
const factory = create({ theme });
export default factory(function App({ middleware: { theme }}) {
// if the theme isn't set, set the default theme
if (!theme.get()) {
theme.set(myTheme);
}
return (
// the application's widgets
);
});
注意:當(dāng)同時使用基于函數(shù)的部件和基于類的部件時,應(yīng)該使用應(yīng)用程序注冊器來注冊主題。當(dāng)使用基于類的部件時(如 @dojo/widgets
) 也是如此。詳情參考[基于類部件的主題]()。
theme
中間件 在可用的主題間切換src/widgets/ThemeSwitcher.tsx
import { create, tsx } from '@dojo/framework/core/vdom';
import theme from '@dojo/framework/core/middleware/theme';
import myTheme from '../themes/MyTheme/theme';
import alternativeTheme from '../themes/MyAlternativeTheme/theme';
const factory = create({ theme });
export default factory(function ThemeSwitcher({ middleware: { theme } }) {
return (
);
});