今日给大伙儿共享1款纯css3完成的数据统计分析手机游戏。这款手机游戏的标准的是将全部的数据相加等于72。这款手机游戏的数据按钮做得很美观大方,必须的情况下能够借用下。1起看下实际效果图:
完成的编码。
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">⑶2</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">⑻</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 ⑶2;
- }
- #d:checked
- {
- countercounter-increment: sum 128;
- }
- #e:checked
- {
- countercounter-increment: sum 4;
- }
- #f:checked
- {
- countercounter-increment: sum ⑻;
- }
-
- .sum::before
- {
- content: '= ' counter(sum);
- }
-
-
-
- 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完成的数据统计分析手机游戏的编码,自身做1下玩是否更成心思,感谢阅读文章,期待能帮到大伙儿,请再次关心脚本制作之家,大家会勤奋共享更多出色的文章内容。