app--->程序入口
app.json內(nèi)容(welcome指的是wxss,jx,wxml文件)
{
"pages": [
"pages/welcome/welcome"
]
}
代碼對齊
shift+alt+f
小程序特性
只有在標(biāo)簽中的內(nèi)容才能在手機(jī)上被長按選中爬虱。
rpx
邏輯分辨率(px/2)
垂直居中排布(對container子標(biāo)簽起效)
<view class="container">
<image class="img" src="./imgs/img.jpg"></image>
<text class="user_name">Hello zhq</text>
<text class="moto">開啟小程序之路</text>
</view>
.container{
display: flex;
flex-direction: column;
align-items: center;
}
垂直居中效果