简易计算机:
.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>
.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;
}
运行结果:
趋势:
.wxml代码:
<view class="zn">
<text>行业趋势指南 ∨</text>
<text>年度趋势指南 ∨</text>
</view>
<view class="divLine" style="height: 2rpx;width: 100%;background-color: rgb(107, 23, 23);margin-top: 38rpx;"></view>
<view class="c1">
<view>最新发布</view>
<view>单品</view>
<view>色彩</view>
<view>风格</view>
<view>细节</view>
<view>面料</view>
</view>
<view class="c2">
<view class="z">波尔卡圆点<br/>2018/04/11</view>
<view class="z z2">牛仔夹克<br/>2018/04/11</view>
<view class="z z3">彩虹<br/>2018/04/11</view>
<view class="z z4">樱花<br/>2018/04/11</view>
<view class="z z5">皱裙<br/>2018/04/11</view>
<view class="z z6">运动套餐<br/>2018/04/11</view>
</view>
.wxss代码:
.c1{
display:flex;
flex-direction:row;
align-items:baseline;
}
.c1{ justify-content: space-around}
.c2 {
display: flex;
flex-wrap: wrap;}
.zn{
line-height: 40px;
display: flex;
justify-content: space-around;
}
.z{
background-color:rgb(18, 68, 160);
border:1px solid #f00;
height:120px;
width:150px;
margin:2px;
}
.z2{
height:120px;
width:150px;
}
.z3{
height:120px;
widows: 150px;
}
.z4{
height:120px;
width:150px;
}
.z5{
height:120px;
width:150px;
}
.z6{
height:120px;
width:150px;
}