这篇文章主要为大家展示了“如何使用css实现计时功能”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“如何使用css实现计时功能”这篇文章吧。
html, body {
height: 100%;
}
body {
font-family: “Microsoft Yahei”;
font-size: 18px;
margin: 0;
padding: 0;
}
.site-wrapper {
display: table;
width: 100%;
height: 100%;
min-height: 100%;
}
.site-wrapper-in免费云主机、域名ner {
vertical-align: middle;
display: table-cell;
}
.site-wrapper-content {
width: 240px;
margin: 0 auto;
text-align: center;
}
.time {
margin: 10px 0 0 80px;
padding: 0;
list-style: none;
}
.time:after {
content: “”;
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.time > li {
text-align: center;
float: left;
position: relative;
overflow: hidden;
width: 10px;
height: 20px;
line-height: 20px;
}
.time > li > div {
position: absolute;
line-height: 20px;
}
@keyframes step6 {
from {
top: 0;
}
to {
top: -120px;
}
}
@-moz-keyframes step6 /* Firefox */
{
from {
top: 0;
}
to {
top: -120px;
}
}
@-webkit-keyframes step6 /* Safari 和 Chrome */
{
from {
top: 0;
}
to {
top: -120px;
}
}
@-o-keyframes step6 /* Opera */
{
from {
top: 0;
}
to {
top: -120px;
}
}
@keyframes step10 {
from {
top: 0;
}
to {
top: -200px;
}
}
@-moz-keyframes step10 /* Firefox */
{
from {
top: 0;
}
to {
top: -200px;
}
}
@-webkit-keyframes step10 /* Safari 和 Chrome */
{
from {
top: 0;
}
to {
top: -200px;
}
}
@-o-keyframes step10 /* Opera */
{
from {
top: 0;
}
to {
top: -200px;
}
}
.min1 {
animation: step6 steps(6) 3600s infinite;
-moz-animation: step6 steps(6) 3600s infinite; /* Firefox */
-webkit-animation: step6 steps(6) 3600s infinite; /* Safari 和 Chrome */
-o-animation: step6 steps(6) 3600s infinite; /* Opera */
}
.min2 {
animation: step10 steps(10) 600s infinite;
-moz-animation: step10 steps(10) 600s infinite; /* Firefox */
-webkit-animation: step10 steps(10) 600s infinite; /* Safari 和 Chrome */
-o-animation: step10 steps(10) 600s infinite; /* Opera */
}
.sec1 {
animation: step6 steps(6) 60s infinite;
-moz-animation: step6 steps(6) 60s infinite; /* Firefox */
-webkit-animation: step6 steps(6) 60s infinite; /* Safari 和 Chrome */
-o-animation: step6 steps(6) 60s infinite; /* Opera */
}
.sec2 {
http2的真正性能到底如何,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。一、研究目的http2的概念提出已经有相当长一段时间了,而网上关于关于http2的文章也一搜一大把。但是从搜索的结果来…