登录
注册
开源
企业版
高校版
搜索
帮助中心
使用条款
关于我们
开源
企业版
高校版
私有云
Gitee AI
NEW
我知道了
查看详情
登录
注册
12月28日,「开源中国源创会年终盛典」珠海站再次回归!点击免费报名参会
代码拉取完成,页面将自动刷新
捐赠
捐赠前请先登录
取消
前往登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
Watch
不关注
关注所有动态
仅关注版本发行动态
关注但不提醒动态
11
Star
25
Fork
321
OpenHarmony-SIG
/
contest
代码
Issues
15
Pull Requests
13
Wiki
统计
流水线
服务
Gitee Pages
JavaDoc
PHPDoc
质量分析
Jenkins for Gitee
腾讯云托管
腾讯云 Serverless
悬镜安全
阿里云 SAE
Codeblitz
我知道了,不再自动展开
更新失败,请稍后重试!
Issues
/
详情
移除标识
内容风险标识
本任务被
标识为内容中包含有代码安全 Bug 、隐私泄露等敏感信息,仓库外成员不可访问
ygSlider - OpenHarmonyOS ArkUI基于JSPAI实现的色相滑块组件
待办的
#I5H4P9
任务
YanGo
创建于
2022-07-14 17:14
标题: OpenHarmonyOS - ArkUI基于JSPAI实现的色相滑块组件 仓库地址: https://gitee.com/yango520/ygSlider 作者: 杨尚晓 ## 开发环境说明 - 工具版本:OpenHarmony DevEco Studio 3.0 Beta3 - SDK版本:3.0.0.901(API Version 8 Beta3) - 组要组件:组件名称yg-slider ## 展示效果 ![输入图片说明](https://images.gitee.com/uploads/images/2022/0714/154747_3a8add1f_5292475.gif "1657784738182.gif") ![输入图片说明](https://images.gitee.com/uploads/images/2022/0714/153436_c91789d3_5292475.png "微信截图_20220714143928.png") ![输入图片说明](https://images.gitee.com/uploads/images/2022/0714/153444_41a75dd9_5292475.png "微信截图_20220714143942.png") ## 属性 | 属性名 | 类型 | 默认值 | 作用 | | ---- | ---- | ---- | ---- | | g-color | Array | [] | 渐变色值组,eg: #ff9800 | | step | Number | 20 | 步长,g-color属性里每两渐变色之间步长,步长越大 越精准,渲染压力越大 | | show-card | Boolean | false | 是否显示滑块上方的颜色卡片 | ## 组件事件 | 属性名 | 类型 | 返回值 | 备注 | | ---- | ---- | ---- | ---- | | get-result | Function | {num:String, rgbColor:String, hexColor:String, hex:Object} | num: 当前滑块下标值, rgbColor: rgb颜色值【rgb(0,0,0)】, hex颜色值【##ff9800】,hex: R,G,B对应16进制hex值 | ## 调用实现 在需要引用的hml中element引入组件 ```html <element name="yg-slider" src="../../common/component/ygSlider/ygSlider"></element> <div class="container"> <yg-slider g-color="{{gColor}}" step="{{step}}" show-card="{{showCard}}" @get-result="getResult" ></yg-slider> </div> ``` js中的传参和绑定的事件 ```javascript import Log from "../../common/utils/log" const lg = new Log('index页面'); // 可以传入一个值作为该页面的标识 export default { data: { gColor: [ '#FF0000', '#FFE300', '#74FF00', '#00FFA6', '#00FDFF', '#0034FC', '#4200FF', '#BC00FF', '#FD00FF', '#FF0000' ], step: 20, showCard: true, }, onInit() { }, getResult(res){ lg.info(res._detail) }, } ``` - gColor是渐变色值组,这里需要跟css样式里的一至。 - 本来尝试在内联样式绑定linear-gradient,切报错提示无法绑定渐变的内联样式 - 该问题已提Issues:https://gitee.com/openharmony/docs/issues/I5F8KC?from=project-issue ## 实现思路 1. 根据UI写好样式。 2. 绑定滑块的触摸事件 3. 获取滑块条的长度和位置,和当前触摸的位置做比较,通过计算获取滑块所在的位置 4. 封装获取两颜色之间的渐变值组 5. 根据渐变值组总长度,设置为滑块的刻度值。 6. 滑块滑动到某位置计算该位置刻度,得到渐变值组的对应色值,赋值给颜色卡片展示 ## 实现过程 ### 1. 根据UI写好页面和样式 ygSlider.hml页面 ```html <div class="container"> <div class="yg-slider" ref="ygSlider" id="ygSlider"> <div class="yg-slider-bg"></div> <div class="yg-slider-button"> <div class="yg-slider-button-child"></div> </div> <div class="yg-slider-color"></div> </div> </div> ``` ygSlider.css ```css .yg-slider{ width: 320px; } .yg-slider-bg{ background: linear-gradient(90deg, #FF0000, #FFE300, #74FF00, #00FFA6, #00FDFF, #0034FC, #4200FF, #BC00FF, #FD00FF,#FF0000); width: 100%; height: 4px; border-radius: 16px; } .yg-slider-button{ /* 设置热区 */ position: absolute; top: -16px; transform: translateX(-18px); left: 0%; width: 36px; height: 36px; background-color: rgba(52,0,250,.5); border-radius: 16px; display: flex; justify-content: center; align-items: center; } .yg-slider-button-child{ border-radius: 8px; width: 16px; height: 16px; background-color: rgba(255,255,255,1); box-shadow: 0 0 1px 1px rgba(0,0,0,.2); } .yg-slider-color{ position: absolute; top: -80px; transform: translateX(-20px); width: 40px; height: 40px; border-radius: 40px; background-color: red; } ``` ![输入图片说明](https://images.gitee.com/uploads/images/2022/0714/153419_fa874c71_5292475.png "i1.png") ### 2. 绑定滑块的触摸事件 ygSlider.hml ```html <div class="yg-slider-button" style="left: {{pct}}%;" @touchstart="sliderStart" @touchmove="sliderMove" @touchend="sliderEnd" > ``` ygSlider.js 在sliderStart事件里,通过getBoundingClientRect()方法获取滑块条的宽高和位置 ```javascript sliderStart(){ const t = this.$refs.ygSlider.getBoundingClientRect(); this.startX = t.left; this.endX = t.left + t.width; this.sliderW = t.width; }, ``` 在sliderMove事件里设置pct为滑块按钮的位置,并确保按钮不会超出滑块条 ```javascript sliderMove(e){ let x = e.touches[0].globalX; let s_x = x - this.startX; if(x <= this.startX){ this.pct = 0; } else if(x >= this.endX){ this.pct = 100; } else { this.pct = s_x * 100 / this.sliderW; } }, ``` ### 3. 封装获取两颜色之间的渐变值组的方法 封装颜色渐变之间值方法 ```javascript /** * @description: 封装颜色渐变之间值 * @param {String} startColor 开始颜色hex * @param {Number} endColor 结束颜色hex * @param {Number} step 渐变精度 * @return {Array} */ gradientColor(startColor,endColor,step){ let startRGB = this.hexToRgb(startColor);//转换为rgb数组模式 let endRGB = this.hexToRgb(endColor); let sR = (endRGB[0]-startRGB[0])/step;//总差值 let sG = (endRGB[1]-startRGB[1])/step; let sB = (endRGB[2]-startRGB[2])/step; var colorArr = []; for(var i=0;i<step;i++){ //计算每一步的hex值 var hex = `rgb(${parseInt((sR*i+startRGB[0]))},${parseInt((sG*i+startRGB[1]))},${parseInt((sB*i+startRGB[2]))})`; colorArr.push(hex); } return colorArr; }, // 将hex表示方式转换为rgb表示方式(这里返回rgb数组模式) hexToRgb(sColor){ var reg = /^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/; sColor = sColor.toLowerCase(); if(sColor && reg.test(sColor)){ if(sColor.length === 4){ var sColorNew = "#"; for(var i=1; i<4; i+=1){ sColorNew += sColor.slice(i,i+1).concat(sColor.slice(i,i+1)); } sColor = sColorNew; } //处理六位的颜色值 var sColorChange = []; for(let i=1; i<7; i+=2){ sColorChange.push(parseInt("0x"+sColor.slice(i,i+2))); } return sColorChange; }else{ return sColor; } }, // 将rgb表示方式转换为hex表示方式 rgbToHex(rgb){ var reg = /^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/; if(/^(rgb|RGB)/.test(rgb)){ let aColor = rgb.replace(/(?:\(|\)|rgb|RGB)*/g,"").split(","); let strHex = "#"; for(let i=0; i<aColor.length; i++){ let hex = this.getHexNumber(aColor[i]); if(hex === "0"){ hex += hex; } strHex += hex; } if(strHex.length !== 7){ strHex = rgb; } return strHex; }else if(reg.test(rgb)){ var aNum = rgb.replace(/#/,'').split(''); if(aNum.length === 6){ return rgb; }else if(aNum.length === 3){ var numHex = "#"; for(let i=0; i<aNum.length; i+=1){ numHex += (aNum[i]+aNum[i]); } return numHex; } }else{ return rgb; } }, //将hexColor或者rgbColor转换hex的RGB值对象 colorToHex(rgb){ if(rgb && rgb.indexOf('#') > -1){ var aNum = rgb.replace(/#/,'').toUpperCase().split(''); if(aNum.length === 6){ return { R: aNum[0] + aNum[1], G: aNum[2] + aNum[3], B: aNum[4] + aNum[5] }; }else if(aNum.length === 3){ return { R: aNum[0] + aNum[0], G: aNum[1] + aNum[1], B: aNum[2] + aNum[2] }; } else { return rgb; } } else if(/^(rgb|RGB)/.test(rgb)){ let aColor = rgb.replace(/(?:\(|\)|rgb|RGB)*/g,"").split(","); let R = this.getHexNumber(aColor[0]); let G = this.getHexNumber(aColor[1]); let B = this.getHexNumber(aColor[2]); return {R,G,B}; } else { return rgb; } }, getHexNumber(str){ if(typeof str === 'string'){ return Number(str).toString(16).padStart(2,'0').toUpperCase() } else { return str; } } ``` 因为传进来的颜色组不止两个,所以做了一个循环处理 ```javascript onPageShow(){ this.setColorList(); }, //将传进来的颜色生成一个渐变色值组 setColorList(){ for(let i = 0; i < this.gColor.length - 1; i++){ let res = this.gradientColor(this.gColor[i], this.gColor[i+1], this.step) this.colorList.push(...res) } // 设置滑块可以展示的最大值 this.maxValue = this.colorList.length - 1; // 展示卡片默认显示数组里的第一个色值 this.nowColor = this.colorList[0] }, ``` ### 4. 根据渐变值组总长度,设置为滑块的刻度值 ```javascript sliderMove(e){ let x = e.touches[0].globalX; let s_x = x - this.startX; if(x <= this.startX){ this.pct = 0; } else if(x >= this.endX){ this.pct = 100; } else { this.pct = s_x * 100 / this.sliderW; } // 计算当前的刻度值 let r = this.getValue(s_x); // 设置滑块按钮滑到所在的位置的的色值 this.nowColor = this.colorList[r]; //最后将每次滑块所变更的值都抛出给父组件去调用做相应的处理 this.$emit('getResult', { num: r, rgbColor: this.nowColor, hexColor: this.rgbToHex(this.nowColor), hex: this.colorToHex(this.nowColor), }) }, sliderEnd(e){ let x = e.touches[0].globalX; let s_x = x - this.startX; let r = this.getValue(s_x); this.nowColor = this.colorList[r]; this.$emit('getResult', { num: r, rgbColor: this.nowColor, hexColor: this.rgbToHex(this.nowColor), hex: this.colorToHex(this.nowColor), }) }, // 获取当前刻度值 getValue(s_x){ let r = Math.ceil(this.maxValue * s_x / this.sliderW); if(r <= 0){ r = 0; } else if(r >= this.maxValue) { r = this.maxValue; } return r; }, ```
标题: OpenHarmonyOS - ArkUI基于JSPAI实现的色相滑块组件 仓库地址: https://gitee.com/yango520/ygSlider 作者: 杨尚晓 ## 开发环境说明 - 工具版本:OpenHarmony DevEco Studio 3.0 Beta3 - SDK版本:3.0.0.901(API Version 8 Beta3) - 组要组件:组件名称yg-slider ## 展示效果 ![输入图片说明](https://images.gitee.com/uploads/images/2022/0714/154747_3a8add1f_5292475.gif "1657784738182.gif") ![输入图片说明](https://images.gitee.com/uploads/images/2022/0714/153436_c91789d3_5292475.png "微信截图_20220714143928.png") ![输入图片说明](https://images.gitee.com/uploads/images/2022/0714/153444_41a75dd9_5292475.png "微信截图_20220714143942.png") ## 属性 | 属性名 | 类型 | 默认值 | 作用 | | ---- | ---- | ---- | ---- | | g-color | Array | [] | 渐变色值组,eg: #ff9800 | | step | Number | 20 | 步长,g-color属性里每两渐变色之间步长,步长越大 越精准,渲染压力越大 | | show-card | Boolean | false | 是否显示滑块上方的颜色卡片 | ## 组件事件 | 属性名 | 类型 | 返回值 | 备注 | | ---- | ---- | ---- | ---- | | get-result | Function | {num:String, rgbColor:String, hexColor:String, hex:Object} | num: 当前滑块下标值, rgbColor: rgb颜色值【rgb(0,0,0)】, hex颜色值【##ff9800】,hex: R,G,B对应16进制hex值 | ## 调用实现 在需要引用的hml中element引入组件 ```html <element name="yg-slider" src="../../common/component/ygSlider/ygSlider"></element> <div class="container"> <yg-slider g-color="{{gColor}}" step="{{step}}" show-card="{{showCard}}" @get-result="getResult" ></yg-slider> </div> ``` js中的传参和绑定的事件 ```javascript import Log from "../../common/utils/log" const lg = new Log('index页面'); // 可以传入一个值作为该页面的标识 export default { data: { gColor: [ '#FF0000', '#FFE300', '#74FF00', '#00FFA6', '#00FDFF', '#0034FC', '#4200FF', '#BC00FF', '#FD00FF', '#FF0000' ], step: 20, showCard: true, }, onInit() { }, getResult(res){ lg.info(res._detail) }, } ``` - gColor是渐变色值组,这里需要跟css样式里的一至。 - 本来尝试在内联样式绑定linear-gradient,切报错提示无法绑定渐变的内联样式 - 该问题已提Issues:https://gitee.com/openharmony/docs/issues/I5F8KC?from=project-issue ## 实现思路 1. 根据UI写好样式。 2. 绑定滑块的触摸事件 3. 获取滑块条的长度和位置,和当前触摸的位置做比较,通过计算获取滑块所在的位置 4. 封装获取两颜色之间的渐变值组 5. 根据渐变值组总长度,设置为滑块的刻度值。 6. 滑块滑动到某位置计算该位置刻度,得到渐变值组的对应色值,赋值给颜色卡片展示 ## 实现过程 ### 1. 根据UI写好页面和样式 ygSlider.hml页面 ```html <div class="container"> <div class="yg-slider" ref="ygSlider" id="ygSlider"> <div class="yg-slider-bg"></div> <div class="yg-slider-button"> <div class="yg-slider-button-child"></div> </div> <div class="yg-slider-color"></div> </div> </div> ``` ygSlider.css ```css .yg-slider{ width: 320px; } .yg-slider-bg{ background: linear-gradient(90deg, #FF0000, #FFE300, #74FF00, #00FFA6, #00FDFF, #0034FC, #4200FF, #BC00FF, #FD00FF,#FF0000); width: 100%; height: 4px; border-radius: 16px; } .yg-slider-button{ /* 设置热区 */ position: absolute; top: -16px; transform: translateX(-18px); left: 0%; width: 36px; height: 36px; background-color: rgba(52,0,250,.5); border-radius: 16px; display: flex; justify-content: center; align-items: center; } .yg-slider-button-child{ border-radius: 8px; width: 16px; height: 16px; background-color: rgba(255,255,255,1); box-shadow: 0 0 1px 1px rgba(0,0,0,.2); } .yg-slider-color{ position: absolute; top: -80px; transform: translateX(-20px); width: 40px; height: 40px; border-radius: 40px; background-color: red; } ``` ![输入图片说明](https://images.gitee.com/uploads/images/2022/0714/153419_fa874c71_5292475.png "i1.png") ### 2. 绑定滑块的触摸事件 ygSlider.hml ```html <div class="yg-slider-button" style="left: {{pct}}%;" @touchstart="sliderStart" @touchmove="sliderMove" @touchend="sliderEnd" > ``` ygSlider.js 在sliderStart事件里,通过getBoundingClientRect()方法获取滑块条的宽高和位置 ```javascript sliderStart(){ const t = this.$refs.ygSlider.getBoundingClientRect(); this.startX = t.left; this.endX = t.left + t.width; this.sliderW = t.width; }, ``` 在sliderMove事件里设置pct为滑块按钮的位置,并确保按钮不会超出滑块条 ```javascript sliderMove(e){ let x = e.touches[0].globalX; let s_x = x - this.startX; if(x <= this.startX){ this.pct = 0; } else if(x >= this.endX){ this.pct = 100; } else { this.pct = s_x * 100 / this.sliderW; } }, ``` ### 3. 封装获取两颜色之间的渐变值组的方法 封装颜色渐变之间值方法 ```javascript /** * @description: 封装颜色渐变之间值 * @param {String} startColor 开始颜色hex * @param {Number} endColor 结束颜色hex * @param {Number} step 渐变精度 * @return {Array} */ gradientColor(startColor,endColor,step){ let startRGB = this.hexToRgb(startColor);//转换为rgb数组模式 let endRGB = this.hexToRgb(endColor); let sR = (endRGB[0]-startRGB[0])/step;//总差值 let sG = (endRGB[1]-startRGB[1])/step; let sB = (endRGB[2]-startRGB[2])/step; var colorArr = []; for(var i=0;i<step;i++){ //计算每一步的hex值 var hex = `rgb(${parseInt((sR*i+startRGB[0]))},${parseInt((sG*i+startRGB[1]))},${parseInt((sB*i+startRGB[2]))})`; colorArr.push(hex); } return colorArr; }, // 将hex表示方式转换为rgb表示方式(这里返回rgb数组模式) hexToRgb(sColor){ var reg = /^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/; sColor = sColor.toLowerCase(); if(sColor && reg.test(sColor)){ if(sColor.length === 4){ var sColorNew = "#"; for(var i=1; i<4; i+=1){ sColorNew += sColor.slice(i,i+1).concat(sColor.slice(i,i+1)); } sColor = sColorNew; } //处理六位的颜色值 var sColorChange = []; for(let i=1; i<7; i+=2){ sColorChange.push(parseInt("0x"+sColor.slice(i,i+2))); } return sColorChange; }else{ return sColor; } }, // 将rgb表示方式转换为hex表示方式 rgbToHex(rgb){ var reg = /^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/; if(/^(rgb|RGB)/.test(rgb)){ let aColor = rgb.replace(/(?:\(|\)|rgb|RGB)*/g,"").split(","); let strHex = "#"; for(let i=0; i<aColor.length; i++){ let hex = this.getHexNumber(aColor[i]); if(hex === "0"){ hex += hex; } strHex += hex; } if(strHex.length !== 7){ strHex = rgb; } return strHex; }else if(reg.test(rgb)){ var aNum = rgb.replace(/#/,'').split(''); if(aNum.length === 6){ return rgb; }else if(aNum.length === 3){ var numHex = "#"; for(let i=0; i<aNum.length; i+=1){ numHex += (aNum[i]+aNum[i]); } return numHex; } }else{ return rgb; } }, //将hexColor或者rgbColor转换hex的RGB值对象 colorToHex(rgb){ if(rgb && rgb.indexOf('#') > -1){ var aNum = rgb.replace(/#/,'').toUpperCase().split(''); if(aNum.length === 6){ return { R: aNum[0] + aNum[1], G: aNum[2] + aNum[3], B: aNum[4] + aNum[5] }; }else if(aNum.length === 3){ return { R: aNum[0] + aNum[0], G: aNum[1] + aNum[1], B: aNum[2] + aNum[2] }; } else { return rgb; } } else if(/^(rgb|RGB)/.test(rgb)){ let aColor = rgb.replace(/(?:\(|\)|rgb|RGB)*/g,"").split(","); let R = this.getHexNumber(aColor[0]); let G = this.getHexNumber(aColor[1]); let B = this.getHexNumber(aColor[2]); return {R,G,B}; } else { return rgb; } }, getHexNumber(str){ if(typeof str === 'string'){ return Number(str).toString(16).padStart(2,'0').toUpperCase() } else { return str; } } ``` 因为传进来的颜色组不止两个,所以做了一个循环处理 ```javascript onPageShow(){ this.setColorList(); }, //将传进来的颜色生成一个渐变色值组 setColorList(){ for(let i = 0; i < this.gColor.length - 1; i++){ let res = this.gradientColor(this.gColor[i], this.gColor[i+1], this.step) this.colorList.push(...res) } // 设置滑块可以展示的最大值 this.maxValue = this.colorList.length - 1; // 展示卡片默认显示数组里的第一个色值 this.nowColor = this.colorList[0] }, ``` ### 4. 根据渐变值组总长度,设置为滑块的刻度值 ```javascript sliderMove(e){ let x = e.touches[0].globalX; let s_x = x - this.startX; if(x <= this.startX){ this.pct = 0; } else if(x >= this.endX){ this.pct = 100; } else { this.pct = s_x * 100 / this.sliderW; } // 计算当前的刻度值 let r = this.getValue(s_x); // 设置滑块按钮滑到所在的位置的的色值 this.nowColor = this.colorList[r]; //最后将每次滑块所变更的值都抛出给父组件去调用做相应的处理 this.$emit('getResult', { num: r, rgbColor: this.nowColor, hexColor: this.rgbToHex(this.nowColor), hex: this.colorToHex(this.nowColor), }) }, sliderEnd(e){ let x = e.touches[0].globalX; let s_x = x - this.startX; let r = this.getValue(s_x); this.nowColor = this.colorList[r]; this.$emit('getResult', { num: r, rgbColor: this.nowColor, hexColor: this.rgbToHex(this.nowColor), hex: this.colorToHex(this.nowColor), }) }, // 获取当前刻度值 getValue(s_x){ let r = Math.ceil(this.maxValue * s_x / this.sliderW); if(r <= 0){ r = 0; } else if(r >= this.maxValue) { r = this.maxValue; } return r; }, ```
评论 (
0
)
YanGo
创建了
任务
登录
后才可以发表评论
状态
待办的
待办的
进行中
已完成
已拒绝
负责人
未设置
标签
未设置
项目
未立项任务
未立项任务
里程碑
未关联里程碑
未关联里程碑
Pull Requests
未关联
未关联
关联的 Pull Requests 被合并后可能会关闭此 issue
分支
未关联
未关联
master
开始日期   -   截止日期
-
置顶选项
不置顶
置顶等级:高
置顶等级:中
置顶等级:低
优先级
不指定
严重
主要
次要
不重要
预计工期
(小时)
参与者(1)
1
https://gitee.com/openharmony-sig/contest.git
git@gitee.com:openharmony-sig/contest.git
openharmony-sig
contest
contest
点此查找更多帮助
搜索帮助
Git 命令在线学习
如何在 Gitee 导入 GitHub 仓库
Git 仓库基础操作
企业版和社区版功能对比
SSH 公钥设置
如何处理代码冲突
仓库体积过大,如何减小?
如何找回被删除的仓库数据
Gitee 产品配额说明
GitHub仓库快速导入Gitee及同步更新
什么是 Release(发行版)
将 PHP 项目自动发布到 packagist.org
评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册