用flex布局写骰子

本文介绍了如何利用Flex布局来实现骰子的六面显示。从最简单的骰子为1的居中设置,到骰子为2、3、4、5、6时不同排列和样式调整,通过改变flex-direction和盒子里的点数分布,成功创建了各种骰子面的效果。
骰子一共有6个面,先构建6个div,写上样式:
.box1 {
            width: 200px;
            height: 200px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px;//盒子之间的间隙
            background-color: paleturquoise;
        }

骰子为1的最容易写,居中即可:

 <div class="box1">
        <div class="contain"></div>
 </div>
.contain {
            width: 20px;
            height: 20px;
            margin: 20px;
            border-radius: 50%;
            background-color: #000000;//小黑点
        }

骰子为2的时候,要考虑排列方式,增加flex-direction:column。

 .box2 {
            width: 200px;
            height: 200px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            margin: 20px;
      
使用flex布局制作骰子可以通过以下步骤实现: 1. 首先,设置一个容器元素,比如ul标签,作为骰子的外部容器。设置宽度、高度、背景颜色等样式属性,同时使用flex布局设置justify-content为space-around,flex-wrap为wrap,align-items为center,以实现骰子布局效果。\[3\] 2. 在容器元素内部,使用li标签作为骰子的每个面。设置li元素的宽度、高度、边框、背景颜色、边框圆角等样式属性,同时使用flex布局使其内部元素水平垂直居中。\[3\] 3. 在每个li元素内部,使用span标签作为骰子的点数。设置span元素的宽度、高度、背景颜色、边框圆角等样式属性,以实现点数的样式效果。\[3\] 通过以上步骤,就可以使用flex布局制作一个骰子的效果。\[1\] #### 引用[.reference_title] - *1* [flex布局(骰子布局)](https://blog.youkuaiyun.com/weixin_54420874/article/details/123097960)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down28v1,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* *3* [【CSS flex布局】用flex骰子](https://blog.youkuaiyun.com/Hemri2580/article/details/127433171)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down28v1,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论 2
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值