鸿蒙行为验证码

先上效果图

Screenshot_2024-07-11T171321.png
Screenshot_2024-07-11T171404.png

实现

  • 1 代码有删减看思路吧
@CustomDialog
struct VFBlockDialog {
  controller?: CustomDialogController
  onResultsClick: (token: string,captchaVerification:string) => void=()=>{};
  @State positionX: number = 0
  @State value: number = 0
  @State seconds: number = 0.1
  @State timeTemp: number = 0
  @State type: number = 0 //默认0  1 失败  2成功
  @State isLoding: boolean = false
  @State captchaBean: CaptchaBean = Const.TabBars_DEFAULT_NEWS_TYPES;

  build() {
    Column() {
      Row() {
        Text('请完成安全验证')
        Image($r('app.media.vfet_delete')).width(20).height(20)
          .onClick(() => {
            if (this.controller != undefined) {
              this.controller.close()
            }
          })
      }
      .width("100%").padding({ top: 16, left: 16, right: 16 }).justifyContent(FlexAlign.SpaceBetween)

      Stack({ alignContent: Alignment.TopStart, }) {
        Image(this.captchaBean.originalImageUrl)
          .height(155)
          .borderRadius(10)
          .width('100%')

        Image(this.captchaBean.jigsawImageUrl)// 数据改变时,改变组件位置
          .height(155)
          .translate({ x: this.positionX, y: 0, z: 0 })
        Image($r('app.media.vficon_refresh')).width(30).height(30)
          .translate({ x: 280, y: 0, z: 0 })
          .onClick(() => {
            if(this.type==0){
              this.refresh()
            }
          })
        if (this.type!=0) {
          Column() {
            Image(this.type==1?$r('app.media.vfdrag_error'):$r('app.media.vfdrag_success')).width(32).height(32).margin({ top: 39 })
            Text(this.type==1?$r('app.string.vfblock_failed'):$r('app.string.vfblock_success')).fontSize(16).fontColor(this.type==1?0xFA5E59:0x51c024).margin({ top: 16 })
            if (this.type==1){
              Text(){
               Span($r('app.string.vf_pintu_error_tip')).fontSize(14).fontColor(0x333333)
               Span($r('app.string.correct')).fontSize(14).fontColor(0xFA5E59)
               Span($r('app.string.position')).fontSize(14).fontColor(0x333333)
              }.margin({ top: 4 })
            }else {
              Text(){
                Span($r('app.string.vfpinyu_success_tip')).fontSize(14).fontColor(0x333333)
                Span(this.seconds.toFixed(1)).fontSize(14).fontColor(0x51c024)
                Span($r('app.string.vfpinyu_success_seconds')).fontSize(14).fontColor(0x333333)
                Span(this.seconds>1?((99 - (this.seconds - 1) / 0.1))<1?'1':((99 - (this.seconds - 1) / 0.1)).toFixed(0):'99').fontSize(14).fontColor(0x51c024)
                Span($r('app.string.vfpinyu_success_user')).fontSize(14).fontColor(0x333333)
              }.margin({ top: 4 })
            }

          }.height(155).backgroundColor(0xbbFFFFFF)
          .width(310)
        }
        if (this.isLoding) {
          Progress({ value: 0, total: 100, type: ProgressType.Ring })
            .width(50).color(Color.Blue)
            .translate({ x: 130, y: 50, z: 0 })
            .style({ strokeWidth: 10, status: ProgressStatus.LOADING })
        }


      }
      .width('100%')
      .padding({
        top: 14,
        left: 16,
        bottom: 15,
        right: 16
      })
      .borderRadius(10)

      Stack({ alignContent: Alignment.Center, }) {

        Slider({
          style: SliderStyle.InSet,
          value: this.value,
          max: 310,
          min: 0
        })
          .width('100%')
          .enabled(this.type==0&&this.captchaBean.originalImageUrl!='')
          .padding({ left: 10, right: 10, bottom: 16 })
          .blockStyle({ type: SliderBlockType.IMAGE, image:this.type==0?$r('app.media.vfdrag_btn_n'):this.type==1?$r('app.media.vfdrag_btn_error'):$r('app.media.vfdrag_btn_success') })
          .trackBorderRadius(10)
          .trackThickness(40)
          .selectedColor(this.type==0?'#117BFF':this.type==1?'#FA5E59':'#65C93D')
          .blockSize({ width: 40, height: 40 })
          .onChange((value: number, mode: SliderChangeMode) => {
            this.value = value;
            this.positionX = (310 - 65) / 310 * value
            // console.info('value:' + value + 'positionX:' + this.positionX.toFixed(0)+"--->"+mode+"---"+SliderChangeMode.Begin);
            if (mode == SliderChangeMode.End) {
              this.seconds=((new Date().getTime()-this.timeTemp)/1000)
              console.info('seconds-->'+this.seconds+"--->"+this.timeTemp)
              this.checkAsync(this.positionX)
              // this.positionX = 0
              // this.value = 0;
            }else if (mode==SliderChangeMode.Begin){
                this.timeTemp=new Date().getTime();
            }
          })
        if (this.value == 0) {
          Text($r('app.string.vf_drag_tv_tip2')).height(40).padding({ bottom: 16 }).fontSize(16).fontColor(Color.Gray)
        }
      }
      .width('100%')

    }
  }
}
  • 2 代码有删减看思路吧
@CustomDialog
struct VFWordCaptchaDialog {
  controller?: CustomDialogController
  onResultsClick: (token: string,captchaVerification:string) => void=()=>{};
  @State type: number = 0 //默认0  1 失败  2成功
  @State isLoding: boolean = false
  @State captchaBean: CaptchaBean = Const.TabBars_DEFAULT_NEWS_TYPES;
  @State pointList: Point[] = [];
  build() {
    Column() {
      Row() {
        Text('请完成安全验证')
        Image($r('app.media.vfet_delete')).width(20).height(20)
          .onClick(() => {
            if (this.controller != undefined) {
              this.controller.close()
            }
          })
      }
      .width("100%").padding({ top: 16, left: 16, right: 16 }).justifyContent(FlexAlign.SpaceBetween)

      Stack({ alignContent: Alignment.TopStart, }) {
        Image(this.captchaBean.originalImageUrl)
          .height(155)
          .borderRadius(10)
          .width('100%')
          .onClick((event: ClickEvent) => {
            if (this.pointList.length<this.captchaBean.wordList.length){
              this.pointList.push(new Point(Math.round(event.x), Math.round(event.y)))
              console.log('点击事件' + event.x + "----" + event.y)
              console.log('点击事件' + JSON.stringify(this.pointList))
              if (this.pointList.length==this.captchaBean.wordList.length) {
                this.checkAsync()
              }
            }
          })
        if (this.pointList != null && this.pointList.length > 0) {
          ForEach(this.pointList, (item: Point, index: number) => {
            Stack({ alignContent: Alignment.Top, }){
              Text((index+1).toString()).fontColor(Color.White).fontSize(14).margin({top:5,right:2})
            }.width(34).height(34).backgroundImage($r('app.media.vfdot_bg')).translate({x:item.x-17,y:item.y-17,z:0})
          })
        }

        Image($r('app.media.vficon_refresh')).width(30).height(30)
          .translate({ x: 280, y: 0, z: 0 })
          .onClick(() => {
            this.refresh()
          })
        if (this.isLoding) {
          Progress({ value: 0, total: 100, type: ProgressType.Ring })
            .width(50).color(Color.Blue)
            .translate({ x: 130, y: 50, z: 0 })
            .style({ strokeWidth: 10, status: ProgressStatus.LOADING })
        }
      }
      .width('100%')
      .padding({
        top: 14,
        left: 16,
        bottom: 15,
        right: 16
      })
      .borderRadius(10)

      Stack() {
        Row({}) {
          if (this.type == 0) {
            Text($r('app.string.vfplease_click_next')).fontSize(14).fontColor(0x3B4147)
            Text(this.captchaBean.wordList.toString() + "】").fontSize(14).fontColor(0x3B4147)
          } else if (this.type == 1) {
            Image($r('app.media.vfword_res_error')).width(24).height(24)
            Text($r('app.string.vf_error')).fontSize(14).fontColor(Color.White).margin({ left: 10 })
          } else {
            Image($r('app.media.vfword_res_success')).width(24).height(24)
            Text($r('app.string.vf_success')).fontSize(14).fontColor(Color.White).margin({ left: 10 })
          }

        }
        .height(40)
        .borderRadius(10)
        .margin({
          top: 4,
          bottom: 16
        })
        .width('100%')
        .justifyContent(FlexAlign.Center)
        .backgroundColor((this.type == 0) ? 0xEBF0F5 : (this.type == 1) ? 0xFA5E59 : 0x65C93D)

      }.margin({ left: 16, right: 16 })
    }

  }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,921评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,635评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,393评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,836评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,833评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,685评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,043评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,694评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,671评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,670评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,779评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,424评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,027评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,984评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,214评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,108评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,517评论 2 343

推荐阅读更多精彩内容