This article mainly introduces the production of WeChat applet welcome page including (source code download) related information. The welcome page is implemented here, which will be used when starting to make applications. Friends who need it can refer to it
WeChat Mini Program Welcome Page:
Let’s take a look at the final rendering:
<view class="usermotto"> <text class="btn">开启小程序之旅</text> </view>
.usermotto { margin-top: 200px; border: 1px solid #405f80; width: 200rpx; height: 80rpx; text-align: center; border-radius: 5px; } .btn{ font-size: 22rpx; font-family: MicroSoft Yahei; font-weight: bold; line-height: 80rpx; }
page{ height: 100%; background: #b3d4db; }
{ "pages":[ "pages/welcome/welcome" ], "window":{ "backgroundTextStyle":"light", "navigationBarBackgroundColor": "#b3d4db", "navigationBarTitleText": "欢迎", "navigationBarTextStyle":"black" } }
How to implement real-time circular progress bar in WeChat applet
WeChat applet monitors gesture sliding Implementation of switching pages
WeChat applet development running WeChat applet
The above is the detailed content of About the production of the welcome page in WeChat mini program. For more information, please follow other related articles on the PHP Chinese website!