一款纯css3实现的数字统计游戏_html/css_WEB-ITnose
程序员文章站
2022-05-23 17:14:08
...
今天给大家分享一款纯css3实现的数字统计游戏。这款游戏的规则的是将所有的数字相加等于72。这款游戏的数字按钮做得很美观,需要的时候可以借用下。一起看下效果图:
在线预览 源码下载
实现的代码。
html代码:
CSS Counter Game
Pick the numbers that add up to 72:
css3代码:
body { counter-reset: sum; } #a:checked { counter-increment: sum 64; } #b:checked { counter-increment: sum 16; } #c:checked { counter-increment: sum -32; } #d:checked { counter-increment: sum 128; } #e:checked { counter-increment: sum 4; } #f:checked { counter-increment: sum -8; } .sum::before { content: '= ' counter(sum); } /* the rest is just to make things pretty */ body { margin: 32px; font: 700 32px/1 'Droid Sans' , sans-serif; color: #fff; background-color: #583f3f; } h1 { margin: 0 0 32px; font-size: 48px; } h2 { margin: 0 0 8px 8px; font-size: inherit; } section { margin-bottom: 16px; padding: 16px; border-radius: 4px; overflow: hidden; background-color: rgba(255, 255, 255, .1); } input { position: absolute; left: -9999px; } label { float: left; margin: 8px; padding: 16px; border-radius: 4px; border: solid 2px rgba(255, 255, 255, .4); background-color: rgba(255, 255, 255, .2); cursor: pointer; transition: all .1s; } label::before { display: inline; } input:checked + label { border: solid 2px #fff; background-color: rgba(255, 255, 255, .4); box-shadow: 0 0 10px #fff; } span { float: left; margin: 8px; padding: 18px; border-radius: 4px; background-color: rgba(0, 0, 0, .1); } #a:checked ~ #b:checked ~ #c:not(:checked) ~ #d:not(:checked) ~ #e:not(:checked) ~ #f:checked ~ .sum::after { content: ' (hooray!)'; }
推荐阅读
-
实例教程 一款纯css3实现的数字统计游戏
-
一款纯css3实现的响应式导航_html/css_WEB-ITnose
-
一款简洁的纯css3代码实现的动画导航_html/css_WEB-ITnose
-
一款纯css3实现的机器人看书动画效果_html/css_WEB-ITnose
-
纯CSS3实现漂亮的价格表样式代码_html/css_WEB-ITnose
-
一款简洁的纯css3代码实现的动画导航_html/css_WEB-ITnose
-
纯css3实现的幽灵按钮导航_html/css_WEB-ITnose
-
纯css3实现的动画加载条_html/css_WEB-ITnose
-
一款纯css3实现的图片3D翻转幻灯片_html/css_WEB-ITnose
-
纯css3实现的动画加载特效_html/css_WEB-ITnose