飞道的博客

使用loading动画让你的条件渲染页面更高级

396人阅读  评论(0)

前言

在我们做项目的使用常常会使用条件渲染有选择的给用户展示相关页面,如果渲染的数据或场景比较多比较复杂,那么往往需要3、4s的时间去完成,用户点击了之后就会陷入3、4s的空白期,并且这段时间屏幕是处于一种”未响应“的状态,用户并不知道自己是否点击生效了。这篇文章主要是介绍一种让条件渲染展示页面更丝滑的方法,这样能大大提高用户的体验。


效果图

在渲染还未完成时展现loading动画给用户

这个看上去是在多个页面进行跳转,实则是只有一个页面,不过是用了条件渲染和loading动画让用户感觉自己跳转了页面。这里就不具体介如何使用条件渲染来将多个页面整合成一个页面了,我之前的博客有详细的描述(https://blog.csdn.net/Zchengjisihan/article/details/129016013?spm=1001.2014.3001.5501)。这篇博客我们将重点放在loading动画上。


核心思想

  • 使用外部组件库的vant-weapp的Popup组件

  • 使用CSS的animation动画

  • 使用JS的setTimeout来等全部数据渲染完成后再隐藏loading动画


vant-weapp的Popup组件

我使用的是样式是从上方弹出并且是圆角的形式,你可以根据自己的需求来调整从哪个方向弹出,是否显示 ”× “ 等等,这些Popup组件支持的api你均可以在官方文档下找的到,在这我就不赘述了


在Popup上添加loading样式

这里需要用到相关CSS的animation知识,如果你想换个更炫酷的loading动画可以直接在相关网站上搜索,很多源码的。我把自己的loading动画放在下面了(这个是参考一个博主的,修改了主色调)


   
  1. <!-- 弹出层 -->
  2. <van-popup show="{{ popShow }}" position="top" custom-style="height: 300rpx;" round>
  3.       <!-- loading盒子,用来装loading动画的 -->
  4. <view class="loadingBox" style="margin-top: 200rpx;">
  5. <view class="loader-dots">
  6. <view> </view>
  7. <view> </view>
  8. <view> </view>
  9. <view> </view>
  10. <view> </view>
  11. </view>
  12. </view>
  13. </van-popup>


   
  1. .loader-dots view{
  2. width: 40rpx;
  3. height: 40rpx;
  4. background: brown;
  5. border-radius: 30%;
  6. display:inline-block;
  7. animation: slide 1s infinite;
  8. }
  9. .loader-dots view :nth-child( 1){
  10. animation-delay:. 1s;
  11. }
  12. .loader-dots view :nth-child( 2){
  13. animation-delay:. 2s;
  14. }
  15. .loader-dots view :nth-child( 3){
  16. animation-delay:. 3s;
  17. background: linear-gradient(to bottom right, rgb( 155, 55, 55), #FFFFFF)
  18. }
  19. .loader-dots view :nth-child( 4){
  20. animation-delay:. 4s;
  21. background: linear-gradient(to bottom right, rgb( 145, 55, 55), #FFFFFF)
  22. }
  23. .loader-dots view :nth-child( 5){
  24. animation-delay:. 5s;
  25. background: linear-gradient(to bottom right, rgb( 135, 55, 55), #FFFFFF)
  26. }
  27. @keyframes slide{
  28. 0%{
  29. transform: scale( 1)
  30. }
  31. 50%
  32. {
  33. opacity: 0.3;
  34. transform: scale( 2);
  35. }
  36. 100%{
  37. transform: scale( 1)
  38. }

若渲染数据较大或增加loading的时间需使用延迟函数setTimeout

除了上诉情况,我们也可以在登录页面的跳转的时候添加这个loading动画。

使用setTimeout的好处一方面是可以等待数据全部渲染完成后再展示给用户,从而避免了数据残留以及数据错位的情况;另一方面则是可以自主设置最短loading动画的时间

例:如上图:虽然渲染完全部的数据只花了几毫秒,但是为了稍微的延迟登录时间,我将setTimeout的时间参数调整到了1000(1s)。我将所有代码放在下面了,需要的自取~


   
  1. <!-- wxml -->
  2. <!-- 原始内容层 -->
  3. <view class="box">
  4. <van-divider contentPosition="center"
  5. customStyle= "color: grey; border-color: grey; font-size: 36rpx; width: 90% ; margin-left:40rpx ; margin-right:40rpx ; margin-top:150rpx"
  6. >
  7. 团团活动管理
  8. </van-divider>
  9. <button bindtap="goIndex" class="button_location" style="width: 450rpx; height: 100rpx">
  10. <text style="font-size: 36rpx; float: left; margin-left: 80rpx;">用户端登录 </text>
  11. <van-icon name="friends-o" size="60rpx" custom-style="height:60rpx; margin-top:15rpx;"/>
  12. </button>
  13. <button bindtap="goNext" class="Teacherbutton_location" style="width: 450rpx; height: 100rpx">
  14. <text style="font-size: 36rpx; float: left; margin-left: 80rpx;">审批端登录 </text>
  15. <van-icon name="manager-o" size="60rpx" custom-style="height:60rpx; margin-top:15rpx;"/>
  16. </button>
  17. <!-- 右下角的图书和提示字 -->
  18. <view style="width: 140rpx;height: 180rpx;position: absolute; right: 40rpx; bottom: 70rpx;" bindtap="lookGuide">
  19. <view style="width: 140rpx;height: 40rpx; font-size: 28rpx; text-align: center; font-weight: 700; color: brown;">手册及日志 </view>
  20. <image src="../../icon/guide.png" style="width: 140rpx;height: 140rpx;"> </image>
  21. </view>
  22. <van-divider contentPosition="center"
  23. customStyle= "color: grey; border-color: grey; font-size: 36rpx; width: 90% ; position: absolute;margin-left:40rpx ; margin-right:40rpx ; bottom:0px"
  24. >
  25. Copyright© STU引力弹簧工作室
  26. </van-divider>
  27. </view>
  28. <!-- 遮罩层 -->
  29. <van-overlay show="{{ show }}" z-index="2">
  30. <view class="wrapper">
  31. <view class="login">
  32. <view class="loginHead">
  33. <image src="../../icon/tuantuan.png" class="tuantuan"> </image>
  34. <view class="cross">
  35. <van-icon name="cross" size="40px" custom-style="position:relative; margin-top:20rpx; margin-left:80rpx" bindtap="onClickHide"/>
  36. </view>
  37. </view>
  38. <view class="loginBody">
  39. <van-divider
  40. contentPosition= "left"
  41. customStyle= "color: grey; border-color: grey; font-size: 36rpx; width: 520rpx ; position:relative; padding-top:80rpx; padding-left:40rpx; ">
  42. Account
  43. </van-divider>
  44. <input bindinput="getAccount" class="inputborder1" placeholder="输入账号"> </input>
  45. <van-divider
  46. contentPosition= "left"
  47. customStyle= "color: grey; border-color: grey; font-size: 36rpx; width: 520rpx ; position:relative; padding-left:40rpx;"
  48. >
  49. Password
  50. </van-divider>
  51. <input class="inputborder2" type="password" placeholder="输入密码" value='{{password}}' bindinput='getPassWord'> </input>
  52. <view bindtap="goRegister" class="goRegister">注册账号 </view>
  53. <view bindtap="goRetrieve" class="goRetrieve">忘记密码 </view>
  54. </view>
  55. <view class="loginFeet">
  56. <view class="loginButton">
  57. <button bindtap="enterIndex" style="width: 88%;border-radius: 40rpx;background-color: #D43030; color:#FFFFFF;box-shadow: 16rpx 8rpx 24rpx rgba(212,48,48, 0.35);">登录 </button>
  58. </view>
  59. <image src="../../icon/client-side.png" class="client-side"> </image>
  60. </view>
  61. </view>
  62. </view>
  63. <!-- 由于不显示导航栏故loading盒子需要修改margin-top值 -->
  64. <van-popup show="{{ popShow }}" position="top" custom-style="height: 300rpx;" round>
  65. <view class="loadingBox" style="margin-top: 200rpx;">
  66. <view class="loader-dots">
  67. <view> </view>
  68. <view> </view>
  69. <view> </view>
  70. <view> </view>
  71. <view> </view>
  72. </view>
  73. </view>
  74. </van-popup>
  75. </van-overlay>


   
  1. const db = wx. cloud. database()
  2. Page({
  3. data: {
  4. popShow: false,
  5. show: false,
  6. password : '',
  7. account : ''
  8. },
  9. goNext( e){
  10. console. log( '点击了审批端登录')
  11. wx. navigateTo({
  12. url: '../nextChoice/nextChoice',
  13. })
  14. },
  15. goIndex( e){
  16. console. log( '点击了用户登录')
  17. //显示用户端的遮罩层
  18. this. setData({
  19. show: true
  20. })
  21. },
  22. // 隐藏遮罩层
  23. onClickHide( ) {
  24. this. setData({
  25. show: false
  26. });
  27. },
  28. //点击登录
  29. enterIndex( ){
  30. let that = this
  31. let account = this. data. account
  32. let password = this. data. password
  33. db. collection( "studentUser")
  34. . where({
  35. account:account
  36. })
  37. . get({})
  38. . then( res=>{
  39. console. log( "查询数据库成功",res. data)
  40. if(password == res. data[ 0]. password){
  41. console. log( '登录成功')
  42. this. setData({
  43. popShow: true
  44. })
  45. setTimeout( () => {
  46. wx. switchTab({
  47. url: '../index/index',
  48. success( ){
  49. that. setData({
  50. popShow: false
  51. })
  52. }
  53. })
  54. }, 1000);
  55. }
  56. else{
  57. console. log( "登录失败")
  58. wx. showToast({
  59. title: '登录失败,账号或密码不正确',
  60. icon : "none"
  61. })
  62. }
  63. })
  64. . catch( res=>{
  65. wx. showToast({
  66. title: '登录失败,账号或密码不正确',
  67. icon : "none"
  68. })
  69. })
  70. },
  71. //获取输入的账号
  72. getAccount( e){
  73. this. setData({
  74. account : e. detail. value
  75. })
  76. },
  77. //获取输入的密码
  78. getPassWord: function( e) {
  79. var password = e. detail. value;
  80. this. setData({
  81. password: password
  82. })
  83. },
  84. //进入注册界面
  85. goRegister( ){
  86. wx. navigateTo({
  87. url: '../closeRegister/closeRegister',
  88. })
  89. },
  90. //进入找回账号密码页面
  91. goRetrieve( ){
  92. wx. navigateTo({
  93. url: '../retrieve/retrieve',
  94. })
  95. }
  96. })


   
  1. {
  2. //json
  3. "usingComponents": {
  4. "van-icon": "@vant/weapp/icon/index",
  5. "van-overlay": "@vant/weapp/overlay/index",
  6. "van-divider": "@vant/weapp/divider/index",
  7. "van-popup": "@vant/weapp/popup/index"
  8. },
  9. "navigationStyle": "custom"
  10. }


   
  1. 当前页面的CSS
  2. text{
  3. padding-right: 10px;
  4. }
  5. .loginHead{
  6. width: 100%;
  7. height: 160rpx;
  8. }
  9. .cross{
  10. float: right;
  11. width: 160rpx;
  12. height: 120rpx;
  13. padding-top: 40rpx;
  14. padding-right: 40rpx;
  15. }
  16. /* 团团图片样式 */
  17. .tuantuan{
  18. width: 160rpx;
  19. height: 120rpx;
  20. padding-top: 40rpx;
  21. padding-left: 40rpx;
  22. }
  23. .loginBody{
  24. width: 100%;
  25. height: 700rpx;
  26. }
  27. .loginFeet{
  28. width: 100%;
  29. height: 300rpx;
  30. }
  31. /* 遮罩层内嵌盒子包装层 */
  32. .wrapper {
  33. display: flex;
  34. align-items: center;
  35. justify-content: center;
  36. height: 100%;
  37. }
  38. /* 遮罩层内嵌盒子内容层 */
  39. .login{
  40. background-color: #FFFFFF;
  41. width: 600rpx;
  42. height: 1200rpx;
  43. border-radius: 40rpx;
  44. }
  45. /* 输入账号的input */
  46. .inputborder1{
  47. margin-left: 40rpx;
  48. margin-right: 40rpx;
  49. margin-bottom: 30rpx;
  50. padding-top: 30rpx;
  51. padding-bottom: 30rpx;
  52. padding-left: 30rpx;
  53. padding-right: 30rpx;
  54. border-radius: 20rpx;
  55. border: 2rpx solid #F2E6E6;
  56. box-shadow: 16rpx 8rpx 24rpx rgba( 212, 48, 48, 0.15);
  57. }
  58. /* 输入密码的input */
  59. .inputborder2{
  60. margin-left: 40rpx;
  61. margin-right: 40rpx;
  62. margin-bottom: 30rpx;
  63. padding-top: 30rpx;
  64. padding-bottom: 30rpx;
  65. padding-left: 30rpx;
  66. padding-right: 30rpx;
  67. border-radius: 20rpx;
  68. border: 2rpx solid #F2E6E6;
  69. box-shadow: 16rpx 8rpx 24rpx rgba( 212, 48, 48, 0.15);
  70. }
  71. /* button在wxss里面修改不了宽度和高度,故在wmxl里面添加style属性来实现 */
  72. .loginButton{
  73. position: relative;
  74. padding-top: 100rpx;
  75. }
  76. .goRegister{
  77. position: relative;
  78. top: 5rpx;
  79. float: right;
  80. right: 40rpx;
  81. font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  82. }
  83. .goRetrieve{
  84. position: relative;
  85. top: 5rpx;
  86. left: 40rpx;
  87. float: left;
  88. font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  89. }
  90. .client-side{
  91. width: 120rpx;
  92. height: 80rpx;
  93. float: right;
  94. margin-top: 10rpx ;
  95. margin-right: 20rpx;
  96. }


   
  1. 总页面的CSS
  2. /* choicePage 和 nextChoice的两个按钮 */
  3. .Teacherbutton_location{
  4. margin-top: 20rpx;
  5. border-radius: 80rpx;
  6. color:black;
  7. background-color: #FFFFFF;
  8. box-shadow: 16rpx 8rpx 24rpx rgba( 212, 48, 48, 0.15);
  9. border: 2rpx solid brown;
  10. }
  11. .button_location{
  12. border-radius: 80rpx;
  13. margin-top: 420rpx;
  14. color: #FFFFFF;
  15. background-color: #D43030;
  16. box-shadow: 16rpx 8rpx 24rpx rgba( 212, 48, 48, 0.15);
  17. border: 2rpx solid #FFFFFF;
  18. }
  19. /* 无数据时显示的图片和文字格式 */
  20. .noData{
  21. height: 700rpx;
  22. width: 100%;
  23. position: absolute;
  24. top: 200rpx;
  25. left: 0px;
  26. margin-top: 50rpx;
  27. }
  28. .fail{
  29. height: 700rpx;
  30. width: 100%;
  31. position: absolute;
  32. top: 100rpx;
  33. margin-top: 50rpx;
  34. }
  35. .tip{
  36. position: relative;
  37. margin-top: 800rpx;
  38. font-size: 36rpx;
  39. color:gray;
  40. text-align: center;
  41. }
  42. /* 所有状态标签的样式 */
  43. .state_0{
  44. float: right;
  45. width: 160rpx;
  46. height: 80rpx;
  47. background-color: #FFC300;
  48. border-radius: 0 30rpx 0 30rpx;
  49. }
  50. .state_1{
  51. width: 160rpx;
  52. height: 80rpx;
  53. background-color: #43CF7C;
  54. border-radius: 0 30rpx 0 30rpx;
  55. z-index: 2;
  56. }
  57. .state_2{
  58. width: 160rpx;
  59. height: 80rpx;
  60. background-color: #FF5733;
  61. border-radius: 0 30rpx 0 30rpx;
  62. z-index: 2;
  63. }
  64. .state_4{
  65. float: right;
  66. width: 160rpx;
  67. height: 80rpx;
  68. background-color: #CCCCCC;
  69. border-radius: 0 30rpx 0 30rpx;
  70. z-index: 2;
  71. flex-direction: row;
  72. position: relative;
  73. margin-left: 40rpx;
  74. }
  75. /* 用来装标签的盒子 */
  76. .state_content{
  77. position: relative;
  78. margin-top: 20rpx ;
  79. margin-left: 30rpx;
  80. font-size: 30rpx;
  81. color: white;
  82. }
  83. /* 预约老师和申请活动的盒子 */
  84. .mine_application{
  85. margin-left: 50rpx;
  86. margin-right: 50rpx;
  87. }
  88. .mine_application_title{
  89. height: 90rpx;
  90. border-bottom: 5rpx solid #A6A6A6;
  91. font-size: 56rpx;
  92. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  93. }
  94. .mine_application_content{
  95. height: 300rpx;
  96. width: 100%;
  97. display: flex;
  98. position: relative;
  99. box-shadow: 16rpx 8rpx 24rpx rgba( 212, 48, 48, 0.1);
  100. margin-top: 40rpx;
  101. border-radius: 30rpx;
  102. background-color: rgb( 252, 252, 252);
  103. border: 1rpx solid rgb( 210, 210, 210);
  104. }
  105. .mine_appointment_title{
  106. height: 90rpx;
  107. border-bottom: 5rpx solid #A6A6A6;
  108. font-size: 56rpx;
  109. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  110. }
  111. .mine_appointment_content{
  112. height: 500rpx;
  113. width: 100%;
  114. display: flex;
  115. position: relative;
  116. box-shadow: 16rpx 8rpx 24rpx rgba( 212, 48, 48, 0.1);
  117. margin-top: 30rpx;
  118. border-radius: 30rpx;
  119. background-color: rgb( 252, 252, 252);
  120. border: 1rpx solid rgb( 210, 210, 210);
  121. }
  122. /* 活动的具体样式 */
  123. .event{
  124. font-size: 40rpx;
  125. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  126. position: relative;
  127. margin: 30rpx;
  128. width: 90%;
  129. flex: 1;
  130. }
  131. .eventTime{
  132. margin-top: 10rpx;
  133. font-size: 28rpx;
  134. color: #A0A9BD;
  135. }
  136. /* loading盒子的样式 */
  137. .loadingBox{
  138. margin-top: 60rpx;
  139. padding-left: 260rpx;
  140. }
  141. .loader-dots view{
  142. width: 40rpx;
  143. height: 40rpx;
  144. background: brown;
  145. border-radius: 30%;
  146. display:inline-block;
  147. animation: slide 1s infinite;
  148. }
  149. .loader-dots view :nth-child( 1){
  150. animation-delay:. 1s;
  151. }
  152. .loader-dots view :nth-child( 2){
  153. animation-delay:. 2s;
  154. }
  155. .loader-dots view :nth-child( 3){
  156. animation-delay:. 3s;
  157. background: linear-gradient(to bottom right, rgb( 155, 55, 55), #FFFFFF)
  158. }
  159. .loader-dots view :nth-child( 4){
  160. animation-delay:. 4s;
  161. background: linear-gradient(to bottom right, rgb( 145, 55, 55), #FFFFFF)
  162. }
  163. .loader-dots view :nth-child( 5){
  164. animation-delay:. 5s;
  165. background: linear-gradient(to bottom right, rgb( 135, 55, 55), #FFFFFF)
  166. }
  167. @keyframes slide{
  168. 0%{
  169. transform: scale( 1)
  170. }
  171. 50%
  172. {
  173. opacity: 0.3;
  174. transform: scale( 2);
  175. }
  176. 100%{
  177. transform: scale( 1)
  178. }
  179. }

结语

如果有疑问欢迎大家留言讨论,你如果觉得这篇文章对你有帮助可以给我一个免费的赞吗?我们之间的交流是我最大的动力!


转载:https://blog.csdn.net/Zchengjisihan/article/details/129121067
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场