小程序: 一种新的应用形态
一种不要安装下载即可使用的应用
触手可及:
通过扫一扫,或者搜索,或者通过公众好跳转。
用完即走:
用户不关心是否安装太多应用的问题,应用无处不在,随时可用,无需安装,也无需卸载。
<!-- rpx: 微信把每个手机屏幕的宽度为750px -->
<!-- iphone 6 375px 750rpx=375px 1rpx=0.5px -->
flexbox布局弹性盒模型
1 display
flex-direction 排布的方向 row(横向) column(纵向)
<view id="container">
<view class=“cubic”></view>
<view class=“cubic”></view>
<view class=“cubic”></view>
<view class=“cubic”></view>
</view>
#container{
width:100%;
height: 700rpx;
background:#ddd;
display:flex;
flex-direction: row;
/*flex-dorection: column;*/
just-ify-content: center;
just-ify-content: center;
just-ify-content: center;
just-ify-content: space-between; 中间的等距离
just-ify-content: space-around; 所有的都是等距离
align-items: flex-start;
align-items: flex-end;
align-items: strech; /* 拉长 */
align-items:
}
.cubic{
width:100rpx;
height:100rpx;
background:#fff;
}