当前位置: 首页 > article >正文

封装Progress 组件

因为业务需求所以有的地方没有放开,如有需要自行修改

<template>
  <wbx-view ref="styleObj">
    <wbx-view style="position: relative;display: flex;flex-direction: row; align-items: center;" 
      :style="{ width: videoProgressWidth + 'px',height:progressHeight+'px'}" @touchmove="handleTouchMove"@touchend~stop="handleTouch">
      <wbx-view style="position: absolute;transition: all 0.3s linear;" 
      :style="{ height: progressHeight + 'px',borderRadius:radiusNum+'px'}">
        <wbx-view :style="{width: videoProgressWidth + 'px',height:progressHeight+'px',backgroundColor:progressBackgroundColor}" 
          style="transition: all 0.3s linear;">
        </wbx-view>
        <wbx-view :style="{ width: ProgressWidth,height:progressHeight+'px',backgroundColor:progressColor }" 
        style="position: absolute;top: 0;">
        </wbx-view>
      </wbx-view>
    </wbx-view>
  </wbx-view>
</template>

<script>
/**
 * 用法
 * 
 * @type WBXAppOption
 */
const pageOptions = {
  data() {
    return {
      boxProgressWidth:0,//整体进度条的宽度
      boxHeight:0,//整体进度条的高度
      progressHeight: 5, //进度条移动高度
      ProgressWidth: 0, //进度条移动的宽度
      marginLeftNum: 0, //距离左边距离
      percent: 0, //进度条移动的距离
    };
  },
  props: {
    videoProgressWidth: {
      type: Number,
      default: 300,
    },
    progressBackgroundColor:{
      type:String,
      default:'#e6e6e6'
    },
    progressColor:{
      type:String,
      default:'#bfbfbf'
    },
    ProgressWidth:{
      type: Number,
      default: 0,
    },
    progressHeight:{
      type: Number,
      default: 5,
    },
    radiusNum:{
      type: Number,
      default: 0,
    }
  },
  wbox: {
    onLoad() { },
    onShow() {
      // 页面显示/切入前台时触发
    },
    onHide() {
      // console.log(this.$refs.types,9999)
      // 页面隐藏时触发
    },
    onUnload() {
      // 页面退出时触发
    },
  },
  created() {
    // this.marginLeftNum =
    //   (wbx.getSystemInfoSync().windowWidth - this.videoProgressWidth) / 2;
  },
  mounted() { 
    // this.progressStyleObject = this.$refs.styleObj.styleObject;
    // console.log(this.progressStyleObject ,"this.$refs.styleObj333",this.$refs.styleObj)
    // this.boxHeight=parseFloat(this.progressStyleObject.height)?parseFloat(this.progressStyleObject.height):10
    // this.videoProgressWidth=parseFloat(this.progressStyleObject.width)?parseFloat(this.progressStyleObject.width):300
    // console.log(this.videoProgressWidth,9999999)
    // this.progressHeight=parseFloat(this.progressStyleObject.height)?parseFloat(this.progressStyleObject.height):5
  },
  methods: {
    // 格式化时间
    formatMilliseconds(milliseconds) {
      const seconds = Math.floor(milliseconds / 1000);
      const minutes = Math.floor(seconds / 60);
      const secs = seconds % 60;
      const minutesFormatted = String(minutes).padStart(2, "0");
      const secondsFormatted = String(secs).padStart(2, "0");
      return `${minutesFormatted}:${secondsFormatted}`;
    },
    a() {
      // this.progressHeight = 10;
    },
    // 点击事件
    handleTouch(e) {
      return
      this.strokeHeight = 2;
      this.progressHeight = parseFloat(this.progressStyleObject.height)/2;
      console.log(e,"wwwwwwwwwwwwww")
      let minx = e.touches[0].clientX - this.marginLeftNum;
      if (minx > this.videoProgressWidth) {
        this.percent = this.videoProgressWidth;
      } else if (minx <= 0) {
        this.percent = 0;
      } else {
        this.percent = minx;
      }
      this.ProgressWidth = this.percent;
      this.$emit('moveDistance',this.ProgressWidth+this.marginLeftNum)
      // this.percent = parseInt((minx / this.videoProgressWidth) * 100);
      // this.seekTo = (this.percent / 100) * parseInt(this.duration);
    },
    // 滑动事件
    handleTouchMove(e) {
      return
      this.strokeHeight = 5;
      this.progressHeight = parseFloat(this.progressStyleObject.height);
      let minx = e.touches[0].clientX-this.marginLeftNum;
      if (minx > this.videoProgressWidth) {
        this.percent = this.videoProgressWidth;
      } else if (minx <= 0) {
        this.percent = 0;
      } else {
        this.percent = minx;
      }
      this.ProgressWidth = this.percent;
      this.$emit('moveDistance',this.ProgressWidth+this.marginLeftNum)
      // this.percent = (minx / this.videoProgressWidth) * 100;
      // this.seekTo = (minx/ this.videoProgressWidth)* this.duration;
      // this.seekTo = parseInt((minx/ this.videoProgressWidth)* this.duration/1000)*1000;
    },
  },
  computed: {
    // columnWidth() {
    //   return (this.containerWidth - (this.columnCount - 1) * this.columnGap) / this.columnCount
    // }
  },
  watch: {
    // items: {
    //   handler() {
    //     this.$nextTick(this.updateLayout)
    //   },
    //   deep: true
    // }
  },
  beforeDestroy() { },

};
export default pageOptions;
</script>
<style></style>


http://www.kler.cn/news/317671.html

相关文章:

  • 爬虫到底难在哪里?
  • Linux 进程3
  • 手机在网状态查询接口如何用C#进行调用?
  • 【d48】【Java】【力扣】LCR 123. 图书整理 I
  • 在 Webpack 中配置多入口应用并实现公共依赖的提取
  • 安卓13修改设置设备型号和设备名称分析与更改-android13设置设备型号和设备名称更改
  • 网络安全与国家安全的关系
  • 计算机视觉实战项目4(图像分类+目标检测+目标跟踪+姿态识别+车道线识别+车牌识别+无人机检测+A*路径规划+单目测距与测速+行人车辆计数等)
  • SpringBoot | Maven快速上手
  • ER论文阅读-Decoupled Multimodal Distilling for Emotion Recognition
  • git reflog 和 git log 的详解和区别
  • python 实现bailey borwein plouffe算法
  • AutoX.js向后端传输二进制数据
  • HTML常见语法设计
  • RTSP学习
  • 气膜建筑的维护与维修:延长使用寿命的关键—轻空间
  • 数据科学的秘密武器:defaultdict——Python字典的自动化填充神器,让数据结构更灵活
  • golang学习笔记10-循环结构
  • 黎巴嫩通信设备连环爆炸之谜——网络+供应链攻击
  • 单元测试和unittest框架(超详细总结)
  • ubuntu配置libtorch CPU版本
  • 基本定时器的预分频器和技术周期的计算
  • STM32与51单片机的区别:是否应该直接学习STM32?
  • 推荐一款开源的Redis桌面客户端
  • uniapp打字效果流式输出
  • 【machine learning-13-线性回归的向量化】
  • AUTOSAR_EXP_ARAComAPI的5章笔记(11)
  • ubuntu中Python解释器位置
  • C++性能分析easy_profiler
  • IntelliJ IDEA 2024.1.4 (Ultimate Edition)找不到Add Framework Support解决方法