angular material 主体化自定义组件

Theming your custom components

主体化自定义的组件

In order to style your own components with Angular Material's tooling, the component's styles must be defined with Sass.
为了使用Angular Material的工具设计自己的组件,组件的样式必须用Sass定义。

Using @mixin to automatically apply a theme

使用@mixin自动应用主题

Why using @mixin

The advantage of using a @mixin function is that when you change your theme, every file that uses it will be automatically updated.
Calling the @mixin with a different theme argument allows multiple themes within the app or component.

How to use @mixin

怎样使用@mixin

We can better theme our custom components by adding a @mixin function to its theme file, and then call this function to apply a theme.

All you need is to create a @mixin function in the custom-component-theme.scss
使用 @mixin 函数的优势在于,当您更改主题时,每个使用它的文件都会自动更新。

// Import all the tools needed to customize the theme and extract parts of it
@import '~@angular/material/theming';

// Define a mixin that accepts a theme and outputs the color styles for the component.
@mixin candy-carousel-theme($theme) {
  // Extract whichever individual palettes you need from the theme.
  $primary: map-get($theme, primary);
  $accent: map-get($theme, accent);

  // Use mat-color to extract individual colors from a palette as necessary.
  .candy-carousel {
    background-color: mat-color($primary);
    border-color: mat-color($accent, A400);
  }
}

Now you just have to call the @mixin function to apply the theme:
现在你只需要调用@mixin函数来应用主题:

// Import a pre-built theme
@import '~@angular/material/prebuilt-themes/deeppurple-amber.css';
// Import your custom input theme file so you can call the custom-input-theme function
@import 'app/candy-carousel/candy-carousel-theme.scss';

// Using the $theme variable from the pre-built theme you can call the theming function
@include candy-carousel-theme($theme);

For more details about the theming functions, see the comments in the
source.
有关主题功能的更多详细信息,请参阅源代码.中的注释。

Best practices using @mixin

@mixin 的最佳使用方式

When using @mixin, the theme file should only contain the definitions that are affected by the passed-in theme.
使用@mixin时,主题文件应只包含受传入主题影响的定义。

All styles that are not affected by the theme should be placed in a candy-carousel.scss file.
This file should contain everything that is not affected by the theme like sizes, transitions...
所有不受主题影响的样式应放置在 candy-carousel.scss 文件中。这个文件应该包含所有不受大小,转换等主题影响的内容......

Styles that are affected by the theme should be placed in a separated theming file as
_candy-carousel-theme.scss and the file should have a _ before the name. This file should
contain the @mixin function responsible for applying the theme to the component.
受该主题影响的样式应该放置在一个单独的主题文件中,名称为 _candy-carousel-theme.scss,并且该文件的名称前应该有一个_。该文件应该包含负责将主题应用到组件的@mixin函数。

Using colors from a palette

使用调色板中的颜色

You can consume the theming functions and Material palette variables from
@angular/material/theming. You can use the mat-color function to extract a specific color
from a palette. For example:
您可以使用 @ngular/material/theming 中的主题功能和材料调色板变量。您可以使用底色功能从调色板中提取特定颜色。例如:

// Import theming functions
@import '~@angular/material/theming';
// Import your custom theme
@import 'src/unicorn-app-theme.scss';

// Use mat-color to extract individual colors from a palette as necessary.
// The hue can be one of the standard values (500, A400, etc.), one of the three preconfigured
// hues (default, lighter, darker), or any of the aforementioned prefixed with "-contrast".
// For example a hue of "darker-contrast" gives a light color to contrast with a "darker" hue.
// Note that quotes are needed when using a numeric hue with the "-contrast" modifier.
// Available color palettes: https://material.io/design/color/
.candy-carousel {
  background-color: mat-color($candy-app-primary);
  border-color: mat-color($candy-app-accent, A400);
  color: mat-color($candy-app-primary, '100-contrast');
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,504评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,434评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,089评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,378评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,472评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,506评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,519评论 3 413
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,292评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,738评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,022评论 2 329
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,194评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,873评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,536评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,162评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,413评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,075评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,080评论 2 352

推荐阅读更多精彩内容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 7,319评论 0 10
  • Theming your Angular Material app 将您的Angular Material应用程序...
    王义杰阅读 2,354评论 0 0
  • 《那些被爆改过的房子曾连续刷爆朋友圈,然而他们的后续惨状却是...》这几天席卷了我的朋友圈。 这是一档叫做“梦想改...
    良有方阅读 1,475评论 2 3
  • 直到你来找我,我发现我的输入法里已经不能拼出你的名字了,才反应过来真的好久好久了,久到我的回忆里已经不剩什么了 也...
    洛颜thus阅读 196评论 0 0
  • 一、幸运能够遇见“你” 对于一个非教师专业的我来说,有幸参与农村特岗教师招聘考试并顺利上岸,这是一件令人...
    泸水039赵秀英阅读 231评论 0 1