本文主要包含css实例教程,css游戏等相关知识,佚名 希望在学习及工作中可以帮助到您
今天给大家分享一款纯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
- {
- countercounter-reset: sum;
- }
- #a:checked
- { &n