Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to develop the movie Mini Program welcome page

2025-04-08 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces "how to develop the movie Mini Program welcome page". In the daily operation, I believe many people have doubts about how to develop the movie Mini Program welcome page. The editor consulted all kinds of materials and sorted out simple and easy-to-use methods of operation. I hope it will be helpful to answer the questions of "how to develop the movie Mini Program welcome page". Next, please follow the editor to study!

1. Explain the directory structure:

WeChat Mini Programs has four file types:

* .wxml

* .wxss

* .js

* .json

Wxml: similar to the html page in a web page

Wxss: similar to the css style in a web page

Js:js file, which is used to define functions, methods, etc.

Json: configure page properties, such as title bar

The file names of the three app.js app.json app.wxss files in the above picture are fixed and officially defined by Wechat. The file names cannot be modified, and these three files are indispensable.

2. Points for attention:

The file names of the wxml, wxss, js and json files in the page folder must be the same, and the folder name does not have to be the same as the file name in the folder.

First open the development tool, create a quick start project, and simply modify it.

Rename the Index folder to welcome

The hello world at the bottom is changed to a style similar to a button

Add background color; modify top style

Implementation of the button:

Welcome.wxml

Start a trip to the Mini Program

Welcome.wxss

.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

}

Setting of background color:

Note: in the outermost view set the width and height 100%, adding the background color is not valid. Because Wechat defaults to having a layer of page outside.

So you need to write something like this:

Page {

Height: 100%

Background: # b3d4db

}

Top settings:

App.jason

{

"pages": [

"pages/welcome/welcome"

]

"window": {

"backgroundTextStyle": "light"

"navigationBarBackgroundColor": "# b3d4db"

"navigationBarTitleText": "Welcome"

"navigationBarTextStyle": "black"

}

}

At this point, the study on "how to develop the movie Mini Program welcome page" is over. I hope to be able to solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report