小程序第三章作业

分析题

题中给出的代码:

.wxml

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

.wxss

.content{
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ccc;
  font-family: "微软雅黑";
  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;
}

app.ts

.container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 200rpx 0;
  box-sizing: border-box;
} 

运行效果:

修改:

.content{
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ccc;
  font-family: "微软雅黑";
  overflow-x: hidden;
}
.layout-top{
  width: 100%;
  margin-bottom: 200rpx;
}
.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;
}

修改后运行结果:

操作题

代码:

.wxml

<!--pages/new3/new3.wxml-->
<text>pages/new3/new3.wxml</text>
<view class="top">
<view class="ea">行业趋势指南</view>
<view class="ea">年度趋势指南</view>
</view>
<view class="xhx"></view>
<view class="bt">
<view class="bt1">最新发布</view>
<view class="bt2">单品</view>
<view class="bt2">色彩</view>
<view class="bt2">风格</view>
<view class="bt2">细节</view>
<view class="bt2">面料</view>
</view>
<view>
<view class="w">
<view class="tp1"></view>
<view class="tp1"></view>
</view>
<text></text>
<view class="w">
<view class="tp1"></view>
<view class="tp1"></view>
</view>
<text></text>
<view class="w">
<view class="tp1"></view>
<view class="tp1"></view>
</view>
</view>

.wxss

/* pages/new3/new3.wxss */
.top{
  display:flex;
  height: 40px;
  width: 300px; 
}
.ea{
  margin: 10px;
  height: 40px;
  width: 200px;
  text-align: center;
}
.xhx{
  height: 2px;
  width: 500px;
  background: #4F2F4F;
}
.bt{
  display:flex;
  height: 25px;
  width: 320px; 
  
}
.bt1{
height: 17px;
width: 120px;
font-size: 14px;
text-align: center;
}
.bt1:hover{
  border-bottom: 3px solid black;
}
.bt2:hover{
  border-bottom: 3px solid black;
}
.bt2{
height: 17px;
width: 80px;
font-size: 14px;
text-align: center;
}
 
.w{ 
  width: 350px;
  height: 200px;
  display: flex;
}
.tp1{
  height: 200px;
  width: 145px;
  margin: 5px;
  border: 2px solid blue;
}

app.json

{
  "pages": [
    "pages/new3/new3",
    "pages/index/index",
    "pages/logs/logs"
  ],
  "window":{
    "navigationBarBackgroundColor": "#99FFFF",
    "navigationBarTextStyle":"black",
    "navigationBarTitleText": "趋势",
    "BackgroundColor": "#ccc",
    "backgroundTextStyle":"light"
  },
  "style": "v2",
  "renderer": "skyline",
  "rendererOptions": {
    "skyline": {
      "defaultDisplayBlock": true,
      "disableABTest": true,
      "sdkVersionBegin": "3.0.0",
      "sdkVersionEnd": "15.255.255"
    }
  },
  "componentFramework": "glass-easel",
  "sitemapLocation": "sitemap.json",
  "lazyCodeLoading": "requiredComponents"
}

运行结果:

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值