一款纯css3实现的数字统计游戏_html/css_WEB-ITnose

php中文网
发布: 2016-06-24 11:54:25
原创
1299人浏览过

今天给大家分享一款纯css3实现的数字统计游戏。这款游戏的规则的是将所有的数字相加等于72。这款游戏的数字按钮做得很美观,需要的时候可以借用下。一起看下效果图:

在线预览   源码下载

实现的代码。

html代码:

立即学习前端免费学习笔记(深入)”;

 <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代码:

 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!)';        }
登录后复制

HTML速学教程(入门课程)
HTML速学教程(入门课程)

HTML怎么学习?HTML怎么入门?HTML在哪学?HTML怎么学才快?不用担心,这里为大家提供了HTML速学教程(入门课程),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号