第三章作业

1.分析代码,实现页面布局

代码:

cal.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">×</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>

cal.wxss:

.content{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ccc;
  font-family: "Microsoft YaHei";
  overflow-x: hidden;
}
.layout-top{
  width: 100%;
  margin-bottom: 30px;
}
.layout-bottom{
  width: 100%;
}
.screen{
  text-align: right;
  width: 100%;
  line-height: 100px;
  padding: 0 10px;
  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;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  margin-right: 1px;
}
.zero{
  width: 50%;
}
.orange{
  color: #fef4e9;
  background: #f78d1d;
  font-weight: bold;
}
.blue{
  color: #d9eef7;
  background-color: #0095cd;
}

app.wxss:

/**app.wxss**/
.container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 200rpx 0;
} 

执行结果:

2.分析页面结构,实现布局

代码:

qus.wxml:

<view class="bt1">
  <view>行业趋势指南v</view>
  <view>年度趋势指南v</view>
</view>
<view class="bt2">
  <navigator>最新发布</navigator>
  <navigator>单品</navigator>
  <navigator>色彩</navigator>
  <navigator>风格</navigator>
  <navigator>细节</navigator>
  <navigator>面料</navigator>
</view>
<view class="bt3">
  <view class="tp">波尔卡圆点</view>
  <view class="tp">牛仔夹克</view>
  <view class="tp">印花裙</view>
  <view class="tp">彩虹</view>
  <view class="tp">褶饰/皱褶</view>
  <view class="tp">运动套装</view>
</view>

qus.wxss:

.bt1{
  height: 20%;
  border-bottom: 1px solid #ccc;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  line-height: 40px;
}
.bt2{
  height: 20%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  line-height: 30px;
}
navigator:first-child{
  border-bottom: 3px solid orange;
}
.bt3{
  height: 60%;
  background-color: #ccc;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}
.tp{
  width: 140px;
  height: 150px;
  margin-top: 10px;
  background-color: peachpuff;
}

执行结果:

  • 7
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值