当前位置:网站首页>Summary of wechat applet display style knowledge points
Summary of wechat applet display style knowledge points
2022-07-04 22:58:00 【Song Xiaoyu】
1. view Label of flex Layout
flex namely HTML Medium inline, Change block elements into inline elements
display: flex;
1.1 flex Direction selection of layout
Set up flex After layout , You can choose horizontal layout or vertical layout , There are four ways
flex-direction:
row: The horizontal direction from left to right is the main axis
row-reverse: The horizontal direction from right to left is the main axis
column: The vertical direction from top to bottom is the main axis
column-reverse: The vertical direction from bottom to top is the main axis
1.2 Other options for horizontal and vertical layout
- The horizontal layout
justify-content
flex-start Start on the left ( The default value is )
flex-end From the right
flex-center align horizontal center
space-between full-justified
space-around The distance between each element is equal , And there is an equal distance between the head and the tail
- Vertical layout
align-items
stretch Fill the entire container longitudinally
flex-start Start at the top
flex-end Start at the bottom
center Vertically centered
baseline Align with the first line of text of the child element ??
Son view A property is align-self, He has five choices for vertical layout , Plus auto
1.3 control view Do you want to change lines
flex-wrap:
nowrap Don't wrap ( Default )
wrap Line break
wrap-reverse Line break , The first line is at the bottom
Reference documents : https://www.cnblogs.com/sun8134/p/6395947.html
2. Line break , Single space , Consecutive spaces
- Line break
\n
It should be noted that , Text that needs to wrap , Must be wrapped intext
In the label - Single space have access to
\t
, Multiple\t
Show only one space , To display multiple spaces , You can use the following method - Consecutive spaces When parsing multiple spaces Need to be wrapped in `` In the label , If the page displays
You need to add
decode="{true}"
You can directly connect multiple spaces here , Can recognize
Hello ah Ha ha ha ( The space is half the size of Chinese characters )
Hello ah Ha ha ha ( The space is the size of Chinese characters )
Hello ah Ha ha ha ( The space is set according to the font )
or
Hello ah Ha ha ha ( The space is half the size of Chinese characters )
Hello ah Ha ha ha ( The space is the size of Chinese characters )
Hello ah Ha ha ha ( The space is set according to the font )
3. shadows
- Box model shadow
box-shadow
Shadow of the vulva : box-shadow: Shadowy X Axis ( You can use negative values ) Shadowy Y Axis ( You can use negative values ) Shadow blur value ( size ) Color of shadow ; X The positive value of the axis indicates that the direction is right ,Y A positive value of the axis indicates that the direction is down Inner shadow : On the basis of the outer shadow, addinset
X The positive value of the axis indicates that the direction is left ,Y The positive value of the axis indicates that the direction is up - Text shadow
text-shadow
Attributes of the outer shadow with the box model , Consistent function No inner shadow Reference documents : http://www.cnblogs.com/wuchuanlong/p/5980766.html
4. Gradient effect gradients
- Linear gradient (Linear Gradients)- Down / Up / towards the left / towards the right / Diagonally
- Radial Gradient (Radial Gradients)- Defined by their center
// From top to bottom ( Default )
background: linear-gradient(red, blue);
// From left to right
background: linear-gradient(to right, red , blue);
...
Reference documents : https://blog.csdn.net/u010377372/article/details/79721725
solve "\n" Unable to achieve line feed effect
In the database \n
When taken out, it will become \\n
, And in the small program text The effect of line breaking should be achieved in the component , You need to \\n
convert to \n
.
resolvent :
content.replace(/\\n/g, "\n");
file :https://blog.csdn.net/zhangying1994/article/details/86552970
边栏推荐
- A complete tutorial for getting started with redis: redis shell
- Unity修仙手游 | lua动态滑动功能(3种源码具体实现)
- Google Earth Engine(GEE)——以MODIS/006/MCD19A2为例批量下载逐天AOD数据逐天的均值、最大值、最小值、标准差、方差统计分析和CSV下载(北京市各区为例)
- 攻防世界 MISC 进阶区 Erik-Baleog-and-Olaf
- 质量体系建设之路的分分合合
- The sandbox has reached a cooperation with digital Hollywood to accelerate the economic development of creators through human resource development
- Sword finger offer 65 Add without adding, subtracting, multiplying, dividing
- A complete tutorial for getting started with redis: transactions and Lua
- 【机器学习】手写数字识别
- 浅聊一下中间件
猜你喜欢
A complete tutorial for getting started with redis: transactions and Lua
The overview and definition of clusters can be seen at a glance
Attack and defense world misc advanced area can_ has_ stdio?
Redis入门完整教程:Redis Shell
攻防世界 MISC 进阶区 can_has_stdio?
集群的概述与定义,一看就会
The new version judges the code of PC and mobile terminal, the mobile terminal jumps to the mobile terminal, and the PC jumps to the latest valid code of PC terminal
Redis入门完整教程:键管理
[OpenGL] note 29 anti aliasing (MSAA)
The sandbox has reached a cooperation with digital Hollywood to accelerate the economic development of creators through human resource development
随机推荐
【ODX Studio编辑PDX】-0.2-如何对比Compare两个PDX/ODX文件
Redis入门完整教程:列表讲解
Redis入门完整教程:发布订阅
A complete tutorial for getting started with redis: Pipeline
Google Earth Engine(GEE)——以MODIS/006/MCD19A2为例批量下载逐天AOD数据逐天的均值、最大值、最小值、标准差、方差统计分析和CSV下载(北京市各区为例)
Record: how to scroll screenshots of web pages on Microsoft edge in win10 system?
Serial port data frame
sobel过滤器
微信小程序显示样式知识点总结
SPSS installation and activation tutorial (including network disk link)
Close system call analysis - Performance Optimization
Redis démarrer le tutoriel complet: Pipeline
共创软硬件协同生态:Graphcore IPU与百度飞桨的“联合提交”亮相MLPerf
Attack and defense world misc advanced area Hong
Insert sort, select sort, bubble sort
Three stage operations in the attack and defense drill of the blue team
Redis入门完整教程:慢查询分析
Notepad++--编辑的技巧
Redis入门完整教程:有序集合详解
剑指 Offer 65. 不用加减乘除做加法