css 高度塌陷_菜鸟前端学习之路--纯CSS实现计时器(带毫秒)

cb779dabce737c41d8d94dada90ab3a4.png

今天刚写完js的作业,赶紧来写这个,不然后面学了又把前面的忘了.在之前模拟小米页面的过程中就发现,如果在html的主题代码中放入太多div等块级元素,会让整个html代码显得冗余,所以伪元素真的是个好东西,放在css里又不碍事,又能使html页面好看一点,所以今天我就想好好说一下伪元素,伪元素其实在html中有很多用处,我自己用过的就是清除浮动,做那种简单的星级评价,模拟小米商城,再加上这个简单计时器.

当然伪元素的用法肯定不止这些,我这周末好好补一补伪元素的用法,这里待更新.

惯例,上代码

html部分

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
  <link rel="stylesheet" href="simple-counter.css">
</head>
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
<form action="form_action.asp">
  <section>
    <input type=checkbox name="zj" id="stop">
    <input type="reset" id="reset">
    <label for="stop">暂停/开始</label>
    <label for="reset">重置</label>
  <div class="seconds">
  </div>
  <div class="minutes">
  </div>
  <div class="hours">
  </div>
  <div class="mileseconds">
  </div>
    </section>
</form>
</body>
</html>
</body>
</html>

css部分

input {
  visibility: hidden;
}

input:nth-of-type(1):checked ~ div::before {
  animation-play-state: running;
}

input:nth-of-type(2):active ~ div::before {
  animation: none;
}

label {
  position: absolute;
  z-index: 333;
  font-size: 50px;
  width: 250px;
  text-align: center;
  line-height: 100px;
  height: 100px;
  border: solid;
  background-color: lightgreen;
  top: 350px;
}

label:nth-of-type(1) {
  left: 10px;
}

label:nth-of-type(2) {
  left: 400px;
}

label:hover {
  margin: 2px;
}

section {
  position: relative;
  width: 800px;
  margin: auto;
  height: 1000px;
  top: 100px;
}

section div {
 
  position: absolute;
  width: 200px;
  height: 200px;
  border: solid;
  overflow: hidden;
}

section .seconds {
  left: 480px;
}

section .minutes {
  left: 240px;
}
section .mileseconds {
  left: 720px;
}
section div.seconds::before {
  width: 200px;
  
  height: 200px;
  /* border:solid; */
  margin-top: 0%;
  content: ' 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59';
  display: inline-block;
  font-size: 100px;
  text-align: center;
  line-height: 200px;
  animation: rotate 60s steps(60) infinite;
  animation-play-state: paused;
}

section div.minutes::before {
  width: 200px;
  height: 200px;
  /* border:solid; */
  margin-top: 0%;
  content: ' 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59';
  display: inline-block;
  font-size: 100px;
  text-align: center;
  line-height: 200px;
  animation: rotate 3600s steps(60) infinite;
  animation-play-state: paused;
}
section div.mileseconds::before {
  width: 200px;
  height: 200px;
  /* border:solid; */
  margin-top: 0%;
  content: ' 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99';
  display: inline-block;
  font-size: 100px;
  text-align: center;
  line-height: 200px;
  animation: mileseconds 1s steps(100) infinite;

  animation-play-state: paused;
}

section div.hours::before {
  width: 200px;
  height: 200px;
  /* border:solid; */
  margin-top: 0%;
  content: ' 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23';
  display: inline-block;
  font-size: 100px;
  text-align: center;
  line-height: 200px;
  animation: hours 86400s steps(24) infinite;
  animation-play-state: paused;
}

@keyframes hours {
  to {
    margin-top: -2400%;
  }
}

@keyframes rotate {
  to {
    margin-top: -6000%;
  }
}
@keyframes mileseconds {
  to {
    margin-top: -10000%;
  }
}

写到这里,这里的content其实好像还有另外一种实现方式,我写的是数值轮动,应该也可以水平轮动,去掉这个display:inline-block就好应该,周末可以试试,这个待更!!!!!!!!!!!!!!!!!


2020/11/14更新,我来好好看看伪元素的用法了

1 闭合浮动

975d25c4b79a38bc827e76827e616fe8.png

4af9caf529483efe4ce0e0b9392bd466.png

给父元素设置一个伪元素,content:"";display:block或者table都行,clear-both;父元素的高度就会被撑开,这种适合于没给定父元素高度而且子元素浮动以至于父元素高度塌陷的情况

2 简单的星级评价

61b2a78175188af30faadd12ad822bf8.png

7fc9590b58662e8660f3e1741de3eddc.png

这个是最简单的那种星级评价,简单的用了flex布局,还可以升级一下,比如默认的显示几个星星,原理类似,不多说

整个页面其实最难的部分是这个重置部分,只能用form标签里面的reset效果,当你active这个button的时候,所有动画也要同时停止,同时把之前开始的动画input:checked重置掉.,这样就是完完全全的重置啦,和一般计时器一毛一样.下面上效果图

3f5f5df9b43f79ceedfb267bb2e04ec0.gif
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值