富贵资源网 Design By www.hznty.com
今天给大家分享一款纯css3实现的数字统计游戏。这款游戏的规则的是将所有的数字相加等于72。这款游戏的数字按钮做得很美观,需要的时候可以借用下。一起看下效果图:
实现的代码。
html代码:
XML/HTML Code复制内容到剪贴板- <h1>
- CSS Counter Game</h1>
- <section>
- <h2>
- Pick the numbers that add up to 72:</h1>
- <input id="a" type="checkbox"><label for="a">64</label>
- <input id="b" type="checkbox"><label for="b">16</label>
- <input id="c" type="checkbox"><label for="c">-32</label>
- <input id="d" type="checkbox"><label for="d">128</label>
- <input id="e" type="checkbox"><label for="e">4</label>
- <input id="f" type="checkbox"><label for="f">-8</label>
- <span class="sum"></span>
- </section>
css3代码:
CSS Code复制内容到剪贴板- body
- {
- countercounter-reset: sum;
- }
- #a:checked
- {
- countercounter-increment: sum 64;
- }
- #b:checked
- {
- countercounter-increment: sum 16;
- }
- #c:checked
- {
- countercounter-increment: sum -32;
- }
- #d:checked
- {
- countercounter-increment: sum 128;
- }
- #e:checked
- {
- countercounter-increment: sum 4;
- }
- #f:checked
- {
- countercounter-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实现的数字统计游戏的代码,自己做一下玩是不是更有意思,谢谢阅读,希望能帮到大家,请继续关注,我们会努力分享更多优秀的文章。
富贵资源网 Design By www.hznty.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
富贵资源网 Design By www.hznty.com
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。