我的编程空间,编程开发者的网络收藏夹
学习永远不晚

CSS3中如何实现倒计时效果

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

CSS3中如何实现倒计时效果

小编给大家分享一下CSS3中如何实现倒计时效果,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!

实现效果

CSS3中如何实现倒计时效果

实现代码

html

<div class='wrapper'>  <div class='time-part-wrapper'>    <div class='time-part minutes tens'>      <div class='digit-wrapper'>        <span class='digit'>0</span>        <span class='digit'>5</span>        <span class='digit'>4</span>        <span class='digit'>3</span>        <span class='digit'>2</span>        <span class='digit'>1</span>        <span class='digit'>0</span>      </div>    </div>    <div class='time-part minutes ones'>      <div class='digit-wrapper'>        <span class='digit'>0</span>        <span class='digit'>9</span>        <span class='digit'>8</span>        <span class='digit'>7</span>        <span class='digit'>6</span>        <span class='digit'>5</span>        <span class='digit'>4</span>        <span class='digit'>3</span>        <span class='digit'>2</span>        <span class='digit'>1</span>        <span class='digit'>0</span>      </div>    </div>  </div>  <div class='time-part-wrapper'>    <div class='time-part seconds tens'>      <div class='digit-wrapper'>        <span class='digit'>0</span>        <span class='digit'>5</span>        <span class='digit'>4</span>        <span class='digit'>3</span>        <span class='digit'>2</span>        <span class='digit'>1</span>        <span class='digit'>0</span>      </div>    </div>    <div class='time-part seconds ones'>      <div class='digit-wrapper'>        <span class='digit'>0</span>        <span class='digit'>9</span>        <span class='digit'>8</span>        <span class='digit'>7</span>        <span class='digit'>6</span>        <span class='digit'>5</span>        <span class='digit'>4</span>        <span class='digit'>3</span>        <span class='digit'>2</span>        <span class='digit'>1</span>        <span class='digit'>0</span>      </div>    </div>  </div>  <div class='time-part-wrapper'>    <div class='time-part hundredths tens'>      <div class='digit-wrapper'>        <span class='digit'>0</span>        <span class='digit'>9</span>        <span class='digit'>8</span>        <span class='digit'>7</span>        <span class='digit'>6</span>        <span class='digit'>5</span>        <span class='digit'>4</span>        <span class='digit'>3</span>        <span class='digit'>2</span>        <span class='digit'>1</span>        <span class='digit'>0</span>      </div>    </div>    <div class='time-part hundredths ones'>      <div class='digit-wrapper'>        <span class='digit'>0</span>        <span class='digit'>9</span>        <span class='digit'>8</span>        <span class='digit'>7</span>        <span class='digit'>6</span>        <span class='digit'>5</span>        <span class='digit'>4</span>        <span class='digit'>3</span>        <span class='digit'>2</span>        <span class='digit'>1</span>        <span class='digit'>0</span>      </div>    </div>  </div></div>

css

.digit {  display: inline-block;  font-size: 200px;  color: rgba(0, 0, 0, 0.25);  height: 180px;  line-height: 1;}.time-part-wrapper {  display: inline-block;  margin-right: 50px;  position: relative;}.time-part-wrapper:not(:last-child):after {  content: ":";  display: block;  width: 30px;  height: 230px;  position: absolute;  top: 0px;  right: -30px;  color: rgba(0, 0, 0, 0.25);  font-size: 200px;  line-height: 0.9;}.time-part {  width: 140px;  text-align: center;  height: 180px;  overflow: hidden;  display: inline-block;  margin-left: -5px;  box-sizing: border-box;}.time-part .digit-wrapper {  animation-timing-function: cubic-bezier(1, 0, 1, 0);}.time-part.minutes.tens .digit-wrapper {  animation-name: minutes-tens;  animation-duration: 3600s;  animation-iteration-count: 1;}.time-part.minutes.ones .digit-wrapper {  animation-name: minutes-ones;  animation-duration: 600s;  animation-iteration-count: 6;}.time-part.seconds.tens .digit-wrapper {  animation-name: seconds-tens;  animation-duration: 60s;  animation-iteration-count: 60;}.time-part.seconds.ones .digit-wrapper {  animation-name: seconds-ones;  animation-duration: 10s;  animation-iteration-count: 360;}.time-part.hundredths.tens .digit-wrapper {  animation-name: hundredths-tens;  animation-duration: 1s;  animation-iteration-count: 3600;}.time-part.hundredths.ones .digit-wrapper {  animation-name: hundredths-ones;  animation-duration: 0.1s;  animation-iteration-count: 36000;}@keyframes minutes-tens {  0% {    transform: translateY(-180px);  }  16.66667% {    transform: translateY(-360px);  }  33.33333% {    transform: translateY(-540px);  }  50% {    transform: translateY(-720px);  }  66.66667% {    transform: translateY(-900px);  }  83.33333% {    transform: translateY(-1080px);  }}@keyframes minutes-ones {  0% {    transform: translateY(-180px);  }  10% {    transform: translateY(-360px);  }  20% {    transform: translateY(-540px);  }  30% {    transform: translateY(-720px);  }  40% {    transform: translateY(-900px);  }  50% {    transform: translateY(-1080px);  }  60% {    transform: translateY(-1260px);  }  70% {    transform: translateY(-1440px);  }  80% {    transform: translateY(-1620px);  }  90% {    transform: translateY(-1800px);  }}@keyframes seconds-tens {  0% {    transform: translateY(-180px);  }  16.66667% {    transform: translateY(-360px);  }  33.33333% {    transform: translateY(-540px);  }  50% {    transform: translateY(-720px);  }  66.66667% {    transform: translateY(-900px);  }  83.33333% {    transform: translateY(-1080px);  }}@keyframes seconds-ones {  0% {    transform: translateY(-180px);  }  10% {    transform: translateY(-360px);  }  20% {    transform: translateY(-540px);  }  30% {    transform: translateY(-720px);  }  40% {    transform: translateY(-900px);  }  50% {    transform: translateY(-1080px);  }  60% {    transform: translateY(-1260px);  }  70% {    transform: translateY(-1440px);  }  80% {    transform: translateY(-1620px);  }  90% {    transform: translateY(-1800px);  }}@keyframes hundredths-tens {  0% {    transform: translateY(-180px);  }  10% {    transform: translateY(-360px);  }  20% {    transform: translateY(-540px);  }  30% {    transform: translateY(-720px);  }  40% {    transform: translateY(-900px);  }  50% {    transform: translateY(-1080px);  }  60% {    transform: translateY(-1260px);  }  70% {    transform: translateY(-1440px);  }  80% {    transform: translateY(-1620px);  }  90% {    transform: translateY(-1800px);  }}@keyframes hundredths-ones {  0% {    transform: translateY(-180px);  }  10% {    transform: translateY(-360px);  }  20% {    transform: translateY(-540px);  }  30% {    transform: translateY(-720px);  }  40% {    transform: translateY(-900px);  }  50% {    transform: translateY(-1080px);  }  60% {    transform: translateY(-1260px);  }  70% {    transform: translateY(-1440px);  }  80% {    transform: translateY(-1620px);  }  90% {    transform: translateY(-1800px);  }}body {  background: #F1614B;  margin: 0;  font-family: "Aldrich";}.wrapper {  margin: 100px auto;  width: 1000px;  position: relative;}.wrapper:before, .wrapper:after {  content: "";  display: block;  position: absolute;  width: 100%;  left: 0;  height: 20px;  z-index: 10;}.wrapper:before {  top: 0px;  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YxNjE0YiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2YxNjE0YiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');  background-size: 100%;  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f1614b), color-stop(100%, rgba(241, 97, 75, 0)));  background-image: -moz-linear-gradient(top, #f1614b 0%, rgba(241, 97, 75, 0) 100%);  background-image: -webkit-linear-gradient(top, #f1614b 0%, rgba(241, 97, 75, 0) 100%);  background-image: linear-gradient(to bottom, #f1614b 0%, rgba(241, 97, 75, 0) 100%);}.wrapper:after {  bottom: 0px;  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YxNjE0YiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMTYxNGIiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');  background-size: 100%;  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(241, 97, 75, 0)), color-stop(100%, #f1614b));  background-image: -moz-linear-gradient(top, rgba(241, 97, 75, 0) 0%, #f1614b 100%);  background-image: -webkit-linear-gradient(top, rgba(241, 97, 75, 0) 0%, #f1614b 100%);  background-image: linear-gradient(to bottom, rgba(241, 97, 75, 0) 0%, #f1614b 100%);}

以上是“CSS3中如何实现倒计时效果”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网行业资讯频道!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

CSS3中如何实现倒计时效果

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

CSS3中如何实现倒计时效果

小编给大家分享一下CSS3中如何实现倒计时效果,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!实现效果实现代码html
2023-06-08

JavaScript如何实现简单的倒计时效果

这篇文章主要介绍了JavaScript如何实现简单的倒计时效果的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇JavaScript如何实现简单的倒计时效果文章都会有所收获,下面我们一起来看看吧。具体代码如下
2023-07-02

如何利用JavaScript实现春节倒计时效果

这篇文章给大家分享的是有关如何利用JavaScript实现春节倒计时效果的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。效果预览html部分
2023-06-26

css3如何实现圆形旋转倒计时

这篇文章将为大家详细讲解有关css3如何实现圆形旋转倒计时,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。很多答题的H5界面上有旋转倒计时的效果,一个不断旋转减少的动画,类似于下图的这样。今天研究了下,可以
2023-06-08

Android中怎么实现一个倒计时效果

今天就跟大家聊聊有关Android中怎么实现一个倒计时效果,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。需求:a.在后台添加时,如果是今日直播,则需要添加开始时间(精确到秒);b.离
2023-05-30

Android使用CountDownTimer实现倒计时效果

在开发中会经常用到倒计时这个功能,包括给手机发送验证码等等,之前我的做法都是使用Handler + Timer + TimerTask来实现,现在发现了这个类,果断抛弃之前的做法,相信还是有很多人和我一样一开始不知道Android已经帮我们
2022-06-06

Android实现倒计时的按钮效果

最近有人问我如何实现倒计时的按钮功能,例如发送验证码,我记得有个CountDownTimer,因为好久没用过了,自己就写了一个,代码如下new CountDownTimer(10000, 1000) {@Overridepublic voi
2022-06-06

WPF实现倒计时转场动画效果

这篇文章主要介绍了如何利用WPF实现倒计时转场动画效果,文中的示例代码讲解详细,对我们学习或工作有一定帮助,需要的可以参考一下
2022-11-13

jquery 倒计时效果实现秒杀思路

公司做了个秒杀页面,需要做一个倒计时效果,感觉还特此收藏,喜欢的朋友也可以学习下
2022-11-15

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录