青少年编程与数学 01-006 设计网页的外观 19课题、计数器

本文介绍CSS计数器。

“优先权决定重点,重点决定排序,排序决定生活。”
“Priorities determine what we focus on, what we focus on determines what we become.”
—— 史蒂芬·柯维 (Stephen R. Covey) | 美国作家、教育家 | 1932 ~ 2012

“生活中最重要的事情是要有一个明确的目标和达成它的先后顺序。”
“The important thing in life is to have a great aim, and the determination to attain it.”
—— 约翰·沃尔夫冈·冯·歌德 (Johann Wolfgang von Goethe) | 德国作家、科学家 | 1749 ~ 1832

“有效的时间管理实际上是对你自己的生命进行优先级排序。”
“Effective time management is actually life management by priorities.”
—— 海伦·凯勒 (Helen Keller) | 美国作家、社会活动家 | 1880 ~ 1968

“成功的秘诀在于一种始终如一的思考方式,以及对目标的坚定排序。”
“The secret of success is a constancy of purpose in pursuit of a goal, a consistent sorting of goals.”
—— 本杰明·梅尼克 (Benjamin Mays) | 美国教育家、牧师 | 1894 ~ 1984

课题摘要

本文介绍CSS计数器。

课题要求

掌握CSS计数器的应用。

一、计数器

CSS 计数器就像“变量”。变量值可以通过 CSS 规则递增(将跟踪它们的使用次数)。
如需使用 CSS 计数器,我们将使用以下属性:
counter-reset - 创建或重置计数器
counter-increment - 递增计数器值
content - 插入生成的内容
counter() 或 counters() 函数 - 将计数器的值添加到元素

body {
  counter-reset: section;
}
h2::before {
  counter-increment: section;
  content: "Section " counter(section) ": ";
}

二、嵌套计数器

下面的例子为页面(section)创建一个计数器,为每个 <h1> 元素(subsection)创建一个计数器。
“section” 计数器为每个 <h1> 元素计数,同时写入 “Section” 以及 section 计数器的值,“subsection” 计数器为每个 <h2> 元素计数,同时写入 section 计数器的值以及 subsection 计数器的值:

body {
  counter-reset: section;
}
h1 {
  counter-reset: subsection;
}
h1::before {
  counter-increment: section;
  content: "Section " counter(section) ". ";
}
h2::before {
  counter-increment: subsection;
  content: counter(section) "." counter(subsection) " ";
}

计数器对于创建概述列表也很有用,因为在子元素中会自动创建一个计数器的新实例。在这里,我们使用 counters() 函数在不同级别的嵌套计数器之间插入一个字符串:

ol {
  counter-reset: section;
  list-style-type: none;
}
li::before {
  counter-increment: section;
  content: counters(section,".") " ";
}

三、CSS 计数器属性

属性	描述
content	 ::before  ::after 伪元素一同使用,来插入生成的内容。
counter-increment	递增一个或多个计数器值。
counter-reset	创建或重置一个或多个计数器。

四、练习

<!doctype html>
<html lang = "zh-cn">
<head>
<meta charset = "UTF-8">
    <title>CSS响应式布局 编程笔记 html5&css&js</title>
    <style>
        body {
            text-align: center;
            counter-reset: section;
            color: cyan;
            background-color: teal;
        }
        h2::before {
            counter-increment: section;
            content: "第" counter(section) "章 ";
        }
    </style>
</head>
<body>
<h1>
    《青少年成长管理》
</h1>
<h2>成长工程</h2>
<h2>成长要素</h2>
<h2>成长目标</h2>
<h2>成长资源</h2>
<h2>专业选择</h2>
<h2>成长导师</h2>
<h2>时间管理</h2>
<h2>学习方法</h2>
<h2>常见问题</h2>
<h2>成长计划</h2>
<h2>项目计划</h2>
<h2>任务计划</h2>
<h2>计划执行</h2>
<h2>考核评价</h2>
<h2>调整改进</h2>
<h2>走进社会</h2>
<h2>改变世界</h2>
<h2>成就人生</h2>
</body>
</html>

计数器可以使用有序列表具有自定义的格式,以满足实际需要。

课题作业

完成文档中的代码练习。

附录一、人物介绍:阿德里安·霍洛维茨

阿德里安·霍洛维茨(Adrian Holovaty)是一位知名的Web开发先驱、技术专家和企业家。他是Django框架的共同创始人之一,这个框架是一个高级的Python Web框架,鼓励快速开发和干净、实用的设计。霍洛维茨对开源社区的贡献以及他在Web开发领域的创新工作受到了广泛的认可。

除了Django之外,霍洛维茨还在他的职业生涯中参与了多个项目和企业。他曾经是华盛顿邮报的技术领导,并创办了EveryBlock,这是一个提供本地社区数据和信息的平台,后来被收购。

霍洛维茨的工作重点在于利用技术来改进信息的获取和分发方式,以及推动Web应用的发展。他经常在技术会议上发表演讲,分享他的见解和经验,对下一代Web开发者有着积极的影响。

  • 12
    点赞
  • 23
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值