DEV Community

wei chang
wei chang

Posted on

一个伟大的鸿蒙组件:万能加载动画

大家在日常开发中肯定少不了使用各种加载动画和提示弹窗,比如网络加载动画,加载或操作成功的提示弹窗,失败弹窗,表单输入提示弹窗等等。

这些在iOS和安卓上都有非常著名非常成熟的开源框架,所以幽蓝君想做一款属于鸿蒙的开源框架,并且我要用一行代码实现它。先看效果图:

Image description

这里给大家提供了四种模式的弹窗,分别是加载动画弹窗、文字提示弹窗、成功提示弹窗和失败提示弹窗。这款组件我给它命名为YLLoadingHUD。

引入方式:

1、后台发送‘鸿蒙加载动画’获取项目源码。将ets文件夹下的YLLoadingHUD文件夹拖到自己的项目中。

2、在需要使用的文件中引入:

import YLHud, { HUDClass, HUDMode } from '../YLLoadingHUD/YLLoadingHUD'
Enter fullscreen mode Exit fullscreen mode

3、定义一个对象变量

@State hudItem:HUDClass = {
    show:false,
    mode:HUDMode.loading,
    string:'loading'
  }
Enter fullscreen mode Exit fullscreen mode

4、添加动画组件:

YLHud({hudItem:$hudItem})

Enter fullscreen mode Exit fullscreen mode

展示方式:

当你需要弹窗时,只需要设置

this.hudItem.show = true
Enter fullscreen mode Exit fullscreen mode

同理,想让弹窗消失时设置

this.hudItem.show = false

Enter fullscreen mode Exit fullscreen mode

模式介绍:

1、默认模式:HUDMode.loading

Image description

你可以这样设置使用默认模式:

this.hudItem.mode = HUDMode.loading
this.hudItem.string = "loading"
this.hudItem.show = true
Enter fullscreen mode Exit fullscreen mode

弹窗大小会根据string的内容自适应,string不是必填项,当string传空时,不显示文字,效果图如下:

Image description

2、文字提示弹窗:HUDMode.string

Image description

使用方法:

this.hudItem.mode = HUDMode.string
this.hudItem.string = "This is a tip"
this.hudItem.show = true
Enter fullscreen mode Exit fullscreen mode

此模式string不能为空,且弹窗不会自动消失。

3、成功提示弹窗:HUDMode.success

Image description

使用方法:

this.hudItem.mode = HUDMode.success
this.hudItem.string = "success"
this.hudItem.show = true
Enter fullscreen mode Exit fullscreen mode

此模式2秒会自动隐藏,string非必填。

3、失败提示弹窗:HUDMode.error

Image description
使用方法:

this.hudItem.mode = HUDMode.error
this.hudItem.string = "error"
this.hudItem.show = true
Enter fullscreen mode Exit fullscreen mode

此模式2秒会自动隐藏,string非必填。

完整demo

import YLHud, { HUDClass, HUDMode } from '../YLLoadingHUD/YLLoadingHUD'

@Entry
@Component
struct Index {

  @State message: string = 'YLLoadingHUD'
  @State hudItem:HUDClass = {
    show:false,
    mode:HUDMode.loading,
    string:'loading'
  }

  build() {
    Stack(){
      Row() {
        Flex({direction:FlexDirection.Column,justifyContent:FlexAlign.End,alignItems:ItemAlign.Center}) {
          Text(this.message)
            .fontSize(40)
            .fontWeight(FontWeight.Bold)

          Button("loading")
            .margin({top:100})
            .onClick(()=>{
              this.hudItem.mode = HUDMode.loading
              this.hudItem.string = ""
              this.hudItem.show = true
            })
          Button("string")
            .margin({top:20})
            .onClick(()=>{
              this.hudItem.mode = HUDMode.string
              this.hudItem.string = "This is a tip"
              this.hudItem.show = true

            })

          Button("success")
            .margin({top:20})
            .onClick(()=>{
              this.hudItem.mode = HUDMode.success
              this.hudItem.string = "success"
              this.hudItem.show = true
            })
          Button("error")
            .margin({top:20})
            .onClick(()=>{
              this.hudItem.mode = HUDMode.error
              this.hudItem.string = "error"
              this.hudItem.show = true

            })
          Button("dismiss")
            .margin({top:20})
            .onClick(()=>{
              this.hudItem.show = false
            })
        }
        .width('100%')
      }
      .height('100%')
      YLHud({hudItem:$hudItem})
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

如果觉得好用,希望大家口口相传,幽蓝君一定再接再厉,做大做强。

Hot sauce if you're wrong - web dev trivia for staff engineers

Hot sauce if you're wrong · web dev trivia for staff engineers (Chris vs Jeremy, Leet Heat S1.E4)

  • Shipping Fast: Test your knowledge of deployment strategies and techniques
  • Authentication: Prove you know your OAuth from your JWT
  • CSS: Demonstrate your styling expertise under pressure
  • Acronyms: Decode the alphabet soup of web development
  • Accessibility: Show your commitment to building for everyone

Contestants must answer rapid-fire questions across the full stack of modern web development. Get it right, earn points. Get it wrong? The spice level goes up!

Watch Video 🌶️🔥

Top comments (0)

AWS Security LIVE!

Tune in for AWS Security LIVE!

Join AWS Security LIVE! for expert insights and actionable tips to protect your organization and keep security teams prepared.

Learn More

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay