您现在的位置是:网站首页> 编程资料编程资料

纯CSS3实现的井字棋游戏css3中transform属性实现的4种功能详解CSS3.0(Cascading Style Sheet) 层叠级联样式表纯CSS3实现div按照顺序出入效果CSS3实现列表无限滚动/轮播效果css3 利用transform-origin 实现圆点分布在大圆上布局及旋转特效CSS3实现的侧滑菜单CSS3实现的3D隧道效果用CSS3画一个爱心css3 实现文字闪烁效果的三种方式示例代码六种css3实现的边框过渡效果

2021-09-03 939人已围观

简介 这篇文章主要介绍了纯CSS3实现的井字棋游戏,帮助大家更好的理解和使用CSS,感兴趣的朋友可以了解下

运行效果:

html

Note: use the Full Page view for the best experience.

css3

 @charset "UTF-8"; /* Variables -------------------------------------------------------------- */ /* Body and Notice styling -------------------------------------------------------------- */ body { color: #b6b5ca; font-family: 'Arial', sans-serif; margin: 0; text-align: center; } h5 { font-weight: 400; padding: 0 20px; } /* Tic-tac-toe game -------------------------------------------------------------- */ .tic-tac-toe { font-family: 'Open Sans', sans-serif; height: 300px; overflow: hidden; margin: 50px auto 30px auto; position: relative; width: 300px; } @media (min-width: 450px) { .tic-tac-toe { height: 450px; width: 450px; } } .tic-tac-toe input[type="radio"] { display: none; } .tic-tac-toe input[type="radio"]:checked + label { cursor: default; z-index: 10 !important; } .tic-tac-toe input[type="radio"].player-1 + label:after { content: ""; } .tic-tac-toe input[type="radio"].player-2 + label:after { content: ""; } .tic-tac-toe input[type="radio"].player-1:checked + label:after, .tic-tac-toe input[type="radio"].player-2:checked + label:after { opacity: 1; } .tic-tac-toe input[type="radio"].player-1:checked + label { background-color: #dc685a; } .tic-tac-toe input[type="radio"].player-2:checked + label { background-color: #ecaf4f; } .tic-tac-toe input[type="radio"].turn-1 + label { z-index: 1; } .tic-tac-toe input[type="radio"].turn-2 + label { z-index: 2; } .tic-tac-toe input[type="radio"].turn-3 + label { z-index: 3; } .tic-tac-toe input[type="radio"].turn-4 + label { z-index: 4; } .tic-tac-toe input[type="radio"].turn-5 + label { z-index: 5; } .tic-tac-toe input[type="radio"].turn-6 + label { z-index: 6; } .tic-tac-toe input[type="radio"].turn-7 + label { z-index: 7; } .tic-tac-toe input[type="radio"].turn-8 + label { z-index: 8; } .tic-tac-toe input[type="radio"].turn-9 + label { z-index: 9; } .tic-tac-toe input[type="radio"].turn-1 + label { display: block; } .tic-tac-toe input[type="radio"].turn-1:checked ~ .turn-2 + label { display: block; } .tic-tac-toe input[type="radio"].turn-2:checked ~ .turn-3 + label { display: block; } .tic-tac-toe input[type="radio"].turn-3:checked ~ .turn-4 + label { display: block; } .tic-tac-toe input[type="radio"].turn-4:checked ~ .turn-5 + label { display: block; } .tic-tac-toe input[type="radio"].turn-5:checked ~ .turn-6 + label { display: block; } .tic-tac-toe input[type="radio"].turn-6:checked ~ .turn-7 + label { display: block; } .tic-tac-toe input[type="radio"].turn-7:checked ~ .turn-8 + label { display: block; } .tic-tac-toe input[type="radio"].turn-8:checked ~ .turn-9 + label { display: block; } .tic-tac-toe input[type="radio"].left + label { left: 0; } .tic-tac-toe input[type="radio"].top + label { top: 0; } .tic-tac-toe input[type="radio"].middle + label { left: 100px; } .tic-tac-toe input[type="radio"].right + label { left: 200px; } .tic-tac-toe input[type="radio"].center + label { top: 100px; } .tic-tac-toe input[type="radio"].bottom + label { top: 200px; } @media (min-width: 450px) { .tic-tac-toe input[type="radio"].middle + label { left: 150px; } .tic-tac-toe input[
                
                

相关内容

-六神源码网