第三章作业

第一题 —— 简易计算机

在index.wxml里面加入如下代码:

<view class="content">
  <view class="layout-top">
    <view class="screen">168</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>

接着在index.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: 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;
  flex-direction: column;
  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;
}

运行结果:

 

第二题 —— 实现如下布局效果

1.先在image中导入6张图片

2.接着在index.wxml中写下代码:

<view id="first">
<view class="one">行业趋势指南 ∨</view>
<view class="two">年度趋势指南 ∨</view>
</view>
<view class="a"style="border-bottom: 1px solid #abc;"></view>
<view id="second">
<view style="border-bottom: 3px solid #000;padding-bottom: 5px;">最新发布</view>
<view class="b">单品</view>
<view class="b">色彩</view>
<view class="b">风格</view>
<view class="b">细节</view>
<view class="b">面料</view>
</view>
<view class=""style="border-bottom: 1px solid #abc;"></view>
<view id="third">
  <image src="/image/IMG7.jpg" class="item"/>
  <image src="/image/IMG8.jpg" class="item"/>
</view>
<view id="third">
  <image src="/image/IMG9.jpg" class="item"/>
  <image src="/image/IMG10.jpg" class="item"/>
</view>
<view id="third">
  <image src="/image/IMG11.jpg" class="item"/>
  <image src="/image/IMG12.jpg" class="item"/>
</view>

3.最后在index.wxss中写下代码:

#first{
  font-size: 14px;
  font-weight: bolder;
  margin-top: 15px;
}
.one{
  float: left;
  margin-left: 40px;
}
.two{
 position: relative;
 left: 40px;
}
.a{
  margin-top: 10px;
  opacity: 0.6;
}
#second{
  display: flex;
  margin-left: 10px;
  font-weight: bolder;
  margin-top: 10px;
}
.b{
  margin-left: 15px;
}
#third{
  display: flex;
  flex: 1;
  width: 100%;
  height: 8rem;
  background-color: #fff;
}
image{
  margin-top: 20px;
  margin-left: 24px;
  width: 120px;
  border: 2px solid #000;
  height: 120px;
}

运行结果:

 

 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值