当前位置:网站首页>Wechat applet 01
Wechat applet 01
2022-07-07 15:14:00 【Mu Quanyu [dark cat]】
1.1 What are applets ?
Applet Is currently the The hottest Mobile phone application . And this So-called Applet , General yes Wechat applet .
- What does that mean ?
Namely Attached to WeChat This APP above Program !( Xiao-long zhang Its definition is : No installation required , Go as soon as you use it . In fact, the principle of realizing this without installation is The size of the applet itself is too small , Now the Internet speed is so fast , Therefore, users simply cannot experience the process of downloading and installing !)
Applet At the very beginning After being developed , requirement Project procedure Compressed package The volume cannot be greater than 1MB, Otherwise, it cannot pass the review ! And in the 2017 year 4 The month has been changed , From the original 1MB Promoted to 2MB.
Because such , therefore We And Back end servers When making a joint , The interface mode is adopted . in other words We're going to let Back end Expose some interfaces , So we can go through Online access Go to Data interaction ! So we occupy The size will Much less .
1.2 What can an applet do ?
Sure And Conventional APP Complement each other , Can achieve majority APP Functions that can be realized . However It does Than APP Convenient and simple , It's very small !( For example, the small program of buying tickets 、 Health code applet wait )- Applet It's solved The present APP A big problem in the market !
Namely The APP The frequency of users' use is not very high , But Have to use , that Applet Absolutely The first choice is . Low development threshold , The cost is low . Release Online and offline are extremely simple .After the development of Probably can Let's all All used . Unwanted Contact what Shopping mall applications for some mobile phones , then Required to be put on the shelves Wait for these things .
1.3.1 Development environment deployment
- Sign up for wechat applet
Official website of wechat applet

- install IDE development tool
Extraction code :8zbl
Flex Layout The way Understanding

Flex Layout learningMobile terminal related knowledge
- Physical pixel
answer : The resolution of the screen 、 The smallest unit that the device can control the display , Physical pixels can be regarded as corresponding pixels .
- Device independent pixel and css Pixels ( these two items. yes Virtual pixels )
answer : Device independent pixel ( Also called density independent pixels ), Think of it as Computer coordinates System in A point of , This point represents a Virtual pixels that can be used and controlled by programs ( such as :CSS Pixels , Of course stay android machine in It was also be called “ Device independent pixel ”), then from Related systems Convert to Physical pixel , , in turn, Realization Manipulation .
- DPR、DPI、PPI

- Mobile adaptation scheme
- viewport adapter
Why? do viewport adapter
answer : When mobile phone manufacturers produce and collect Most mobile phones default page Width by 980 px, but mobile phone Actually viewport Width Less than 980 px, such as iphone6 Of yes 375 px. especially We In development , There is a basic need that must be met , That's it take 980 The page of It is completely displayed to On the phone screen And No scroll bar .
Realization
<meta name = "viewport" content="width=device-width,initial-scale=1.0">
intend Set the width of the visual viewport Assign a value to Page width , then according to 1:1 The proportion The zoom .
- rem adapter
Why? do rem adapter
answer : There are too many models , Different mobile phone models The screen size is different . and Developing APP Or small programs , There is a basic need , That's it The inside of your set of design draft is the same must Can be in On different models Effects presented Big difference is not bad . that sure Will be according to The screen size Come on Conduct Different Changed , Content Also want to Change accordingly .
Realization
function remRefresh(){
let clientWidth = document.documentElement.clientWidth;
// Put the screen Equal division 10 Share
let rem = clientWidth / 10;
document.documentElement.style.fontSize - rem + 'px';
document.body.style.fontSize = '12px';
}
window.addEventListener('pageshow',() => {
remRefresh();
})
// Function anti shake
let timeoutId;
window.addEventListener('resize',() => {
timeoutId && clearTimeout(timeoutId);
timeoutId = setTimeout(() => {
remRefresh();
},300)
})
lib-flexible
px2rem-loader
The two above A third party library , It can be Realized .
边栏推荐
- Ctfshow, information collection: web2
- MySQL installation configuration 2021 in Windows Environment
- Several ways of JS jump link
- CTFshow,信息搜集:web6
- 众昂矿业:萤石继续引领新能源市场增长
- asp.netNBA信息管理系统VS开发sqlserver数据库web结构c#编程计算机网页源码项目详细设计
- Apache multiple component vulnerability disclosure (cve-2022-32533/cve-2022-33980/cve-2021-37839)
- Ctfshow, information collection: web12
- #HPDC智能基座人才发展峰会随笔
- What is data leakage
猜你喜欢

Today's sleep quality record 78 points

Unity's ASE achieves full screen sand blowing effect

Bye, Dachang! I'm going to the factory today

【兰州大学】考研初试复试资料分享

#yyds干货盘点# 解决名企真题:交叉线

Win10 or win11 taskbar, automatically hidden and transparent

Ctfshow, information collection: Web3
![[target detection] yolov5 Runtong voc2007 data set](/img/b3/b7f3d46075cb1782d772a24362003e.png)
[target detection] yolov5 Runtong voc2007 data set

TypeScript 发布 4.8 beta 版本

数学建模——什么是数学建模
随机推荐
Niuke real problem programming - Day12
Used by Jetson AgX Orin canfd
How bad can a programmer be? Nima, they are all talents
CTFshow,信息搜集:web3
Ffmpeg --- image processing
[make a boat diary] [shapr3d STL format to gcode]
JSON解析实例(Qt含源码)
leetcode 241. Different Ways to Add Parentheses 为运算表达式设计优先级(中等)
How to enable radius two factor / two factor (2fa) identity authentication for Anheng fortress machine
Change win10 Screensaver
CTFshow,信息搜集:web5
Yyds dry goods inventory # solve the real problem of famous enterprises: cross line
[understanding of opportunity -40]: direction, rules, choice, effort, fairness, cognition, ability, action, read the five layers of perception of 3GPP 6G white paper
Andriod --- JetPack :LiveData setValue 和 postValue 的区别
Ctfshow, information collection: web7
【服务器数据恢复】戴尔某型号服务器raid故障的数据恢复案例
STM32F103C8T6 PWM驱动舵机(SG90)
PAT 甲级 1103 Integer Factorizatio
Unity's ASE realizes cartoon flame
Several ways of JS jump link