Blogger Information
Blog 11
fans 0
comment 0
visits 13105
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
CSS 伪元素::marker详解
**沐曦??
Original
1454 people have browsed it

什么是 ::marker
CSS 伪元素 ::marker 是从 CSS Pseudo-Elements Level 3 开始新增,CSS Pseudo-Elements Level 4 中完善的一个比较新的伪元素,从 Chrome 86+ 开始得到浏览器的支持。

利用它,我们可以给元素添加一个伪元素,用于生成一个项目符号或者数字。

正常而言,我们有如下结构:

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. <ul>
  10. <li>Contagious</li>
  11. <li>Stages</li>
  12. <li>Pages</li>
  13. <li>Courageous</li>
  14. <li>Shaymus</li>
  15. <li>Faceless</li>
  16. </ul>

默认不添加任何特殊的样式,它的样式大概是这样:

利用 ::marker 我们可以对序号前面的小圆点进行改造:

1
2
3
4
5
6
7
8
li {
padding-left: 12px;
cursor: pointer;
color: #ff6000;
}
li::marker {
content: ‘>’;
}
就可以将小圆点改造成任意我们想要的:

::marker 伪元素的一些限制

首先,能够响应 ::marker 的元素只能是一个 list item,譬如 ul 内部的 li,ol 内部的 li 都是 list item。

当然,也不是说我们如果想在其他元素上使用就没有办法,除了 list item,我们可以对任意设置了 display: list-item 的元素使用 ::marker 伪元素。

其次,对于伪元素内的样式,不是任何样式属性都能使用,目前我们只能使用这些:

all font properties — 所以字体属性相关
color — 颜色值
the content property — content 内容,类似于 ::before 伪元素 的 content,用于填充序号内容
text-combine-upright (en-US), unicode-bidi and direction properties — 文档书写方向相关
::marker 的一些应用探索

譬如我们经常见到标题前面的一些装饰:

或者,我们还可以使用 emoji 表情:

都非常适合使用 ::marker 来展示,注意用在非 list-item 元素上需要使用 display: list-item:

1
2

<h1>Lorem ipsum dolor sit amet</h1>

<h1>Lorem ipsum dolor sit amet</h1>
1
2
3
4
5
6
7
8
9
10
h1 {
display: list-item;
padding-left: 8px;
}
h1::marker {
content: ‘▍’;
}
h1:nth-child(2)::marker {
content: ‘?’;
}
CodePen Demo — ::marker example

::marker 是可以动态变化的
有意思的是,::marker 还是可以动态变化的,利用这点,可以简单制作一些有意思的 hover 效果。

譬如这种,没被选中不开心,选中开心的效果:

1
2
3
4
5
6
7
8
9
10
11
12
13
li {
color: #000;
transition: .2s all;
}
li:hover {
color: #ff6000;
}
li::marker {
content: ‘?’;
}
li:hover::marker {
content: ‘?’;
}

CodePen Demo — ::marker example

搭配 counter 一起使用
可以观察到的是,::marker 伪元素与 ::before、::after 伪元素是非常类似的,它们都有一个 content 属性。

在 content 里,其实是可以作用一些简单的字符串加法操作的。利用这个,我们可以配合 CSS 计数器 counter-reset 和 counter-increment 实现给 ::marker 元素添加序号的操作。
对 counter-increment 还不算很了解的可以移步这里:MDN — counter-increment

假设我们有如下 HTML:

1
2
3
4
5
6

<h3>Lorem ipsum dolor sit amet.</h3>

<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>

<h3>Itaque sequi eaque earum laboriosam.</h3>

<p>Ratione culpa reprehenderit beatae quaerat voluptatibus, debitis iusto?</p>

<h3>Laudantium sapiente commodi quidem excepturi!</h3>

<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
我们利用 ::marker 和 CSS 计数器 counter-increment 实现一个自动计数且 h3 前面带一个 emoji 表情的有序列表:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
body {
counter-reset: h3;
}

h3 {
counter-increment: h3;
display: list-item;
}

h3::marker {
display: list-item;
content: “✔” counter(h3) “ “;
color: lightsalmon;
font-weight: bold;
}
效果如下,实现了一个自动给 ::marker 元素添加序号的效果:

CodePen Demo — ::marker example

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post