// 语法: [<namespace>-]<ComponentName>[.is-stateOfComponent][-descendentName][--modifierName]
<button class="Button Button--modifier is-active ButtonSimple Box Box--modifier">
<span class="Button-icon"></span>
<span>
<span>
<span class="Button-deepVeryLongDescentName"></span>
</span>
</span>
</button>
// 使用多个组件: class="Button ButtonSimple Box"
/* 语法: --ComponentName[-descendant|--modifier][-onState]-(cssProperty|variableName) */
--Button-color
--Button-backgroundColor
--Button-onHover-color
--Button-deepVeryLongDescentName-color
--Button-deepVeryLongDescentName-onHover-color
使用 id 或者 js 属性来访问 DOM, 如此以来, 未来对界面进行大量重构的时候 Javascript 仍然可以使用。
<div class="ButtonAdd" id="button-add" js="ButtonAdd">
document.querySelector('.ButtonAdd') // NO
document.querySelector('#button-add') // YES
document.querySelectorAll('js[ButtonAdd]') // YES
- 必须是 svg 格式
- 必须有
<svg class="icon" width=".." height=".." viewBox="..">
- 自定义颜色:
<path fill="currentColor">
// src/icons/flag/hello.svg
<svg class="icon" width="24" height="24" viewBox="0 0 24 24">
<path stroke="currentColor"></path>
</svg>
// hello.php
<?= icon('flag/hello') ?>