CSS Counter Style demo_html/css_WEB-ITnose
2015年2月3日,CSS Counter Style level3成为了W3C的候选标准,是时候来一探究竟, 看看强大魔力的 at counter-style如何自定义list-style和counter 。进来一坐,且听庆哥分解。
强大魔力
使用CSS Counter Style可以做什么,来看看庆哥做的简单案例。当然,如果要发挥最大魔力,需要您的美好创意,这不是哥的特长,就不献丑了,欢迎各位通过留言提交您的创意。
需要注意的是, 目前仅有firefox浏览较好的支持 at counter-style 。我依然把代码放到了codepen,请大家自由选择-在线研究-or-下载收藏-。
使用 at counter-style命令 ,我们可以自定义列表样式,可以用在list-style、counter、counters等上。
结构解析
定义一个counter-style的典型格式如下:
1 |
|
上面详细列出了 at counter-style的所有命令 ,大部分情况下,我们只需要使用其中几个命令即可,例如实现“天干编号”的命令如下。
1 |
|
接下来我们来简要看看各个命令的用法。
算法-system
命令 意义 可接受值 默认值system | 符号生成算法 | cyclic 、 numeric 、 alphabetic 、 symbolic 、 additive 、 [fixed ?] 、 [ extends ] | symbolic |
算法详细解释如下表所说。
参数 意义 示例代码 表现方式cyclic | 循环使用符号 | system: cyclic; symbols:'a' 'b' 'c'; | a,b,c,a,b,c,a |
fixed | 只用一遍符号,数字表示开始使用的位置 | system: fixed 3; symbols:'a' 'b' 'c' 'd'; | 1,2,a,b,c,d,7 |
symbolic | 循环使用符号,第二遍双倍重复 | system:symbolic; symbols:'a' 'b' 'c'; | a,b,c,aa,bb,cc,aaa |
alphabetic | 类似于小写字母循环 | system:alphabetic; symbols:'a' 'b' 'c'; | a,b,c,aa,ab,ac,ba |
numeric | 类似于数字进制 | system:alphabetic; symbols:'a' 'b' 'c'; | b,c,c,ba,bb,bc,ca,cb |
additive | 类似于罗马数字的编号系统 | system:additive; additive-symbols: c 3, b 2, a 1; | a,b,c,ca,cb,cc,cca |
extends | 继承其他编号系统 | system: extends decimal; suffix: ') '; | 1),2),3),4),5),6),7) |
使用范围-range
指定自定义符号系统的使用范围,超出范围外的将采用fallback指定的默认编号。
可以使用[ [ | infinite ]{2} ]或 auto两种形式指定range范围,auto为默认值。
auto在不同system下的含义如下列表所示:
下面的示例都是正确的范围指定。
1 |
|
使用符号-symbols和additive-symbols
这是自定义counter-style中非常重要的属性,在 cyclic、numeric、alphabetic、symbolic、fixed等算法中必须指定symbols属性,在additive算法中必须指定additive-symbols。
使用前后缀-prefix和suffix
prefix的默认自为“ ”,suffix的默认值为"\2E\20",一个点加一个空格。
###使用补零策略-pad
pad可以让开发者指定固定宽度的符号系统,例如三位的数字系统,001, 002,……,100, 101等。
pad指定的格式为 pad && ,例如 pad 3 "0"等。
匿名counter-style-symbols()函数
symblos函数将创建一个没有名字,prefix为"",suffix为" ",range为auto,fallback为decimal,negative为"\2d"(-), pad为0 "",speak-as为auto的匿名style。也即我们只需要在匿名counter-style中指定system和symbols即可。
1 |
|
预定义style
CSS Counter Styles Level 3预定了很多不错的符号系统,例如针对中国用户的天干、地支、中文数字、中文大写等符号系统。这些预定义的系统,使我们学习counter-style的不错资源,下面我们就来看几个。
1 |
|
相关阅读
w3c 候选标准
Predefined Counter Styles
致谢

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.
