第三章作业

本文介绍了如何在微信小程序中使用WXML和WXSS语言创建了一个带有计算器功能的页面,展示了布局和样式设计。同时,还展示了另一个商品展示页面的布局结构和样式控制。
摘要由CSDN通过智能技术生成
布局计算器

运行截图:

<!--pages/comperter/comperter.wxml-->
<view class="content">
<view class="layout-top">
<view class="screen">{{3*8}}</view>
</view>

<view class="layout-bottom">
<view class="btnGroup">
  <view class="item orange">C</view>
  <view class="item orange">退位</view>
  <view class="item orange">#</view>
  <view class="item orange">+</view>
</view>
<view class="btnGroup">
  <view class="item blue">9</view>
  <view class="item blue">8</view>
  <view class="item blue">7</view>
  <view class="item orange">-</view>
</view>
<view class="btnGroup">
  <view class="item blue">6</view>
  <view class="item blue">5</view>
  <view class="item blue">4</view>
  <view class="item orange">x</view>
</view>
<view class="btnGroup">
  <view class="item blue">3</view>
  <view class="item blue">2</view>
  <view class="item blue">1</view>
  <view class="item orange">/</view>
</view>
<view class="btnGroup">
  <view class="item blue zero">0</view>
  <view class="item blue">.</view>
  <view class="item orange">=</view>
</view>
</view>


</view>

/* pages/comperter/comperter.wxss */

.content{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ccc;
  overflow-x: hidden;
}
.layout-top{
  width: 100%;
  margin-bottom: 30rpx;
}
.layout-bottom{
  width: 100%;
}
.screen{
  text-align: right;
  width: 100%;
  line-height: 130rpx;
  padding: 0 10rpx;
  font-weight: bold;
  font-size: 60px;
  box-sizing: border-box;
  border-top: 1px solid #fff;
}

.btnGroup{
  display: flex;
  flex-direction: row;
  flex: 1;
  width: 100%;
  height: 4rem;
  background-color: #fff;
}

.item{
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1px 1px 0 0;
}
.zero{
  width: 50%;
}
.orange{
  color: #fef4e9;
  background-color: #f78d1d;
  font-weight: bold;
}
.blue{
  background-color: #0095ed;
  color: #d9eef7;
}

实现布局效果

<!--pages/shopping/shopping.wxml-->

<view class="nav">
<view class="nav_one">行业趋势指南</view>
<view class="nav_one">年度趋势指南</view>
</view>

<view class="tab">
<view class="tab_one">最新发布</view>
<view >单品</view>
<view >色彩</view>
<view >风格</view>
<view >细节</view>
<view >面料</view>
</view>

<view class="bos">
<view class="box"></view>
<view class="box"></view>
<view class="box"></view>
<view class="box"></view>
<view class="box"></view>
<view class="box"></view>
</view>

/* pages/shopping/shopping.wxss */
.nav{
  width: 100%;
  display: flex;
  border-bottom:1px solid #ccc;
}
.nav_one{
  width: 50%;
  height: 80rpx;
  line-height: 80rpx;
  text-align: center;
}

.tab{
  height: 40px;
  display: flex;
  justify-content: space-around;
  line-height: 40px;
  box-shadow:0 4px 6px #ccc;
}
.tab_one{
  border-bottom:2px solid tomato;
}

.bos{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.box{
  width: 170px;
  height: 170px;
  margin-top: 10px;
  margin-left: 10px;
  border: 1px solid #000;
  background-color: aqua;
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值