首页 > 其他分享 >第三章作业

第三章作业

时间:2024-03-17 19:30:19浏览次数:19  
标签:index 第三章 flex color 100% 作业 width display

一、分析题

实现如下图的页面布局

index wxml

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

app wxss

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

index wxss

//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;
}

运行结果

二.操作题

index wxml

<view class="container">
  <view class="item1">
    <view class="item2">行业趋势指南 ∨</view>
    <view class="item3">年度趋势指南 ∨</view>
  </view>
  <view class="item4" style="border-bottom: 1px solid darkgrey;padding: 10px;"></view>
  <view class="app" style="padding: 10px;">
      <view class="app1" style="border-bottom:5px solid #000;">最新发布</view>
      <view class="app2">单品</view>
      <view class="app3">色彩</view>
      <view class="app4">风格</view>
      <view class="app5">细节</view>
      <view class="app6">面料</view>
  </view>
  <view class="col">
  <view class="col1" style="border: 2px solid #000;width: 120px;height: 120px;margin: 10px 30px;background-color:paleturquoise;"></view>
  <view class="col2" style="border: 2px solid #000;width: 120px;height: 120px;margin: 10px 30px;background-color: paleturquoise;"></view>
</view>
<view class="col">
  <view class="col3" style="border: 2px solid #000;width: 120px;height: 120px;margin: 0 30px;background-color: paleturquoise;"></view>
  <view class="col4" style="border: 2px solid #000;width: 120px;height: 120px;margin: 0 30px;background-color: paleturquoise;"></view>
</view>
  <view class="col">
  <view class="col5" style="border: 2px solid #000;width: 120px;height: 120px;margin: 10px 30px;background-color: paleturquoise;"></view>
  <view class="col6" style="border: 2px solid #000;width: 120px;height: 120px;margin: 10px 30px;background-color: paleturquoise;"></view>
  </view>
</view>

index wsxx

.container{
  height: 100%;
}
.item1,.app{
  display: flex;
  justify-content:space-around;
}
.col{
  display: flex;
  flex-direction: row;
}

运行结果

ee

标签:index,第三章,flex,color,100%,作业,width,display
From: https://blog.csdn.net/weixin_74340708/article/details/136787743

相关文章

  • 第三章作业
    简易计算机:.wxml代码:<viewclass="content"><viewclass="layout-top"><viewclass="screen">168</view></view><viewclass="layout-bottom"><viewclass="btnGroup"&g......
  • 第三章作业
    一.分析题1.index.wxml<viewclass="content"><viewclass="layout-top"><viewclass="screen">168</view></view><viewclass="layout-bottom"><viewclass="btnGroup"......
  • 第三章作业
    实现一个简易计算器wxml代码示例:<viewclass="content"><viewclass="layout-top"><viewclass="screen">168</view></view><viewclass="layout-bottom"><viewclass="btnGroup">&......
  • 第三章课后习题
    一、分析计算机页面布局   实现如下图所示的效果图实现步骤     在zy3.wxml中写下以下代码:<viewclass="c1"><viewclass="ly-top"><viewclass="sc">3×8</view></view><viewclass="ly-bottom">......
  • 第三章 vim 以及 重点第四章 使用DataGrip mysql
    16/3/2024如没有特殊说明使用软件操作一律都是FinalShell第三章Vim编辑器的使用1)三种操作模式命令模式:使用快捷指令操作的文件内容插入模式(编辑模式):可以输入文字信息,此时快捷指令失效末行模式(低行模式),底线命令模式):可以保存退出或者替换文字等只能编辑文本内容不......
  • 微信小程序第三章作业
    一、分析题实现如下图的页面布局index.wxml代码如下://index.wxml<viewclass="content"><viewclass="layout-top"><viewclass="screen">168</view></view><viewclass="layout-bottom"><vi......
  • 深度学习入门基于python的理论与实现-第三章神经网络
    目录激活函数阶跃函数sigmoid函数ReLU函数三层神经网络的实现输出层设计恒等函数和softmax函数输出层的神经元数量手写数字识别MINIST数据集神经网络的推理处理批处理激活函数激活函数是连接感知机和神经网络的桥梁阶跃函数阶跃函数是在感知机中使用的激活函数。\[h(x)=\begi......
  • 第三章总结
    3.1盒子模型3.2块级元素与行内块元素3.2.1块级元素        块级元素默认占一行高度,一行内通常只有一个块级元素(浮动后除外),添加新的块级元素时,会自动换行,块级元素一般作为盒子出现。块级元素的特点如下:(1)一个块级元素占一行。(2)块级元素的默认高度由内容决......
  • 程序是怎么跑起来的第三章
    阅读了《程序是怎样跑起来的》第三章后,我对计算机程序的运行原理有了更深入的理解。这一章主要介绍了程序的内存管理和变量的使用。通过学习,我了解到内存是程序运行的重要资源,程序需要通过内存来存储和操作数据。同时,变量是程序中用于存储数据的容器,它们可以根据不同的数据类型进......
  • 第三章总结
    3.1盒子模型图3-1盒子模型结构盒子模型就是我们在页面设计中经常用到的一种思维模型。在CSS中,一个独立的盒子模型由内容(content)、内边距(padding)、边框(border)和外边距(margin)4个部分组成,如图3-1所示。此外,对padding、border和margin可以进一步细化为上、下、左、右4个部分,......