当前位置:网站首页>Uniapp skills - dom display and hiding
Uniapp skills - dom display and hiding
2022-07-03 13:54:00 【Cloud and cloud discoloration 1】
There is a new demand today , Just need someone dom Do not display when loading , wait until 5 Seconds later . Looking for some ways , Finally, I found that it can still pass js To achieve , It's just the method and h5+js Time is slightly different , The method is as follows :
1、dom Attribute added
<view :class="isShow" > Content </view>
2、data add isShow The default value is
data() {
return{
isShow: "domhide",
}
}
3、 stay style In a statement domhide and domshow Two class
.domhide{display: none;}
.domshow{display: block;}
4、 stay load Add timing program
onLoad() {
if (this.timer) {
clearInterval(this.timer);
}
this.timer = setInterval(() => {
this.isShow= "domshow";
}, 5000);
},
above
Compared with direct use h5+js Please , Make a note of .
There are other simpler ways , Can you tell me about your exchange .
边栏推荐
- Halcon combined with C # to detect surface defects -- Halcon routine autobahn
- 栈应用(平衡符)
- Unity EmbeddedBrowser浏览器插件事件通讯
- Using registered classes to realize specific type matching function template
- 使用tensorflow进行完整的DNN深度神经网络CNN训练完成图片识别案例
- Brief analysis of tensorboard visual processing cases
- IBEM mathematical formula detection data set
- Several common optimization methods matlab principle and depth analysis
- windos 创建cordova 提示 因为在此系统上禁止运行脚本
- Go: send the get request and parse the return JSON (go1.16.4)
猜你喜欢
NFT new opportunity, multimedia NFT aggregation platform okaleido will be launched soon
常见的几种最优化方法Matlab原理和深度分析
logback日志的整理
Several common optimization methods matlab principle and depth analysis
Multi person collaborative data annotation based on Baidu brain easydata from scratch
如何使用lxml判断网站公告是否更新
Use vscode to view hex or UTF-8 codes
Resource Cost Optimization Practice of R & D team
Golang — 命令行工具cobra
8 Queen question
随机推荐
[technology development-24]: characteristics of existing IOT communication technology
Richview trvstyle liststyle list style (bullet number)
Mysql:insert date:sql error [1292] [22001]: data truncation: incorrect date value:
Implementation of Muduo asynchronous logging
Record 405 questions about bank callback post request
Screenshot of the operation steps of upload labs level 4-level 9
C language standard IO function sorting
Static linked list (subscript of array instead of pointer)
【BW16 应用篇】安信可BW16模组与开发板更新固件烧录说明
太阳底下无新事,元宇宙能否更上层楼?
Open PHP error prompt under Ubuntu 14.04
JS convert pseudo array to array
Complete deep neural network CNN training with tensorflow to complete picture recognition case 2
Conversion function and explicit
Can newly graduated European college students get an offer from a major Internet company in the United States?
记录关于银行回调post请求405 问题
Use vscode to view hex or UTF-8 codes
[556. Next larger element III]
PhpMyAdmin stage file contains analysis traceability
使用tensorflow进行完整的DNN深度神经网络CNN训练完成图片识别案例