第三章微信小程序作业

一:分析题

分析下列代码,实现页面布局

步骤一:在index.wxml 下创建以下代码

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

步骤二:在app.scss下创建以下代码

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

步骤三:在index.scss下创建以下代码

.container { 
  display: flex;
  flex-direction: column;
   align-items: center;
   background-color: #ccc;
   font-family: "Microsoft YaHei";
   height: 100%;
   overflow: hidden;
}
.layout-top{
  width: 100%;
  margin-bottom: 30px;
}
.layout-bottom{
  width: 100%;
}
.screen{
  text-align: right;
  width: 100%;
  line-height: 130px;
  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: 4em;
  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;
}

 运行效果图如下:

第二题  分析页面结构实现布局效果 

步骤一: 在index.wxml输入代码

<view class="su">
  <view class="buju"style="padding:8px">
    <view class="one">行业趋势指南   ∨</view>
    <view class="two">年度趋势指南   ∨</view>
  </view>
  <view class="fo" style="border-bottom: 1px solid darkgrey;padding: 10px;"></view>
  <view class="neirong" style="padding: 12px;">
      <view class="yi" style="border-bottom:3px solid #000;">最新发布</view>
      <view class="er">单品</view>
      <view class="san">色彩</view>
      <view class="si">风格</view>
      <view class="wu">细节</view>
      <view class="liu">面料</view>
  </view>
  <view class="yans" style="padding-top: 15px;">
  <view class="w" style="border: 2px solid rgb(34, 31, 31);width: 160px;height: 160px;margin: 10px 30px;background-color:rgb(252, 238, 252);"></view>
  <view class="y" style="border: 2px solid #000;width: 160px;height: 160px;margin: 10px 30px;background-color: rgb(252, 238, 175);"></view>
</view>
<view class="mm">
  <view class="l" style="border: 2px solid #000;width: 160px;height: 160px;margin: 0 30px;background-color: rgb(18, 213, 45);"></view>
  <view class="k" style="border: 2px solid #000;width: 160px;height: 160px;margin: 0 30px;background-color: rgb(26, 238, 175);"></view>
</view>
  <view class="mm">
  <view class="p" style="border: 2px solid #000;width: 160px;height: 160px;margin: 10px 30px;background-color: rgb(231, 175, 238);"></view>
  <view class="s" style="border: 2px solid #000;width: 160px;height: 160px;margin: 10px 30px;background-color: rgb(218, 175, 238);"></view>
  </view>
</view>

步骤二: 在index.scss输入代码

.su{
  height: 100%;
}
.buju,.neirong{
  display: flex;
  justify-content:space-around;
}
.mm{
  display: flex;
  flex-direction: row;
}
.yans{
  display: flex;
  flex-direction: row;
}

步骤三: 在index.json输入代码

{
  "navigationBarBackgroundColor": "#000000",
  "navigationBarTitleText": "趋势(Daz)",
  "navigationBarTextStyle": "white",
  "backgroundTextStyle": "dark"
}

运功效果图如下:

 

 

微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码 【微信小程序-毕设期末大作业微信小程序源码
微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码 微信小程序项目源码毕业设计期末大作业课程设计前端源码
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值