小程序第三章作业

文章详细描述了如何在WeChat小程序中实现如图所示的页面布局,包括使用WXML和WXSS编写代码,配置app.json,并展示了如何运用Flexbox和CSS样式来构建UI组件,如按钮组和屏幕显示。
摘要由CSDN通过智能技术生成

1.分析题

   分析下列,实现如图3-22所示的页面布局。

第一步:新建文件夹为“cal”

第二步:在app.json中进行配置

第三步:配置完成后进行代码编写 

cal.wxml代码:

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

cal.wxss代码:

//cal.wxss
/* 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;
  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.wxss代码:

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

运行结果:

2.操作题 

分析页面结构,实现如图3-23所示的布局效果。

第一步:把需要用的图片放进image文件夹中:

第二步:进行代码编写

hhhh.wxml代码:

//hhhh.wxml
<view class="quan">
<view class="tou">
<text class="hang">行业趋势指南⩗</text>
<text style="float: right;margin-right: 15%;">年度趋势指南⩗</text>
</view>
<view class="xian" style="border-top : 3px solid black;padding: 5px;"></view>
<view class="ti" style="border-bottom: 1px solid grey;">
  <text class="one"  style="border-bottom: 3px solid black;">最新发布</text>
     <text class="one">单品</text>
     <text class="one">色彩</text>
     <text class="one">风格</text>
     <text class="one">细节</text>
     <text class="one">面料</text>
</view>
<view class="yemian">
<view class="tu">
  <image src="image/tian.jpg"/>
<image src="image/xi.jpg"/>
</view>
<view  class="pian">
  <image src="image/tian.jpg" />
<image src="image/yue.jpg"/>
</view>
<view class="zui">
  <image src="image/ko.jpg"/>
<image src="image/tian.jpg"/> 
</view>

</view>
</view>

hhhh.wxss代码: 

//hhhh.wxss
.quan{
  height: 100%;
}
.hang{
  margin-top: 5%;
 margin-left: 12%;
}
.ti{
padding: 3%;
}
.one{
  margin-left: 3%;
}
.tu image{
  width: 280px;
  height: 150px;
  margin-left:3% ;
}
.pian image{
  width: 280px;
  height: 150px;
  margin-left:3% ;
}
.zui image{
  width: 280px;
  height: 150px;
  margin-left:3% ;
}
.tu,.pian,.zui{
  margin: 10px 20px;
  display: flex;
  justify-content: space-between;
}

 运行结果:

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值