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

做网站推销的如何谈客户热点新闻最新消息

做网站推销的如何谈客户,热点新闻最新消息,建设通网站的信息是哪里来的,保定网站推广400办理前言 技术来源于需求&#xff0c;近期遇到了做语音的需求&#xff0c;有个调整语速和音量的进度条&#xff0c;UI组件库的进度条大部分不支持拖动和点击修改当前进度&#xff0c;所以自己手写了一个。 实现思路 MDN文档介绍 <input type"range"> - HTML&am…

前言

技术来源于需求,近期遇到了做语音的需求,有个调整语速和音量的进度条,UI组件库的进度条大部分不支持拖动和点击修改当前进度,所以自己手写了一个。

实现思路

MDN文档介绍

<input type="range"> - HTML(超文本标记语言) | MDN

input中type为range为进度条,然后做一些样式的修改和功能的加工封装为组件。

代码

<template><div class="progress-container"><input type="range" min="0" max="100" :value="currentProgress" :class="[rangeClass, 'silder']" /><div :class="[progressClass,'progress-bar']"></div></div>
</template><script>
export default {props: {// 一个页面用到多个此进度条组件的话要注意多个组件的类名要不同// 灰色的整个进度条的类名rangeClass: {type: String,default: "progress-range"},// 蓝色高亮的进度条的类名progressClass: {type: String,default: "progress-bar"},currentProgress: {type: Number,}},mounted() {const silder = document.querySelector("." + this.rangeClass);const progressBar = document.querySelector("." + this.progressClass);let that = this// 略微有点问题,偶发性会不触发绑定事件silder.oninput = function() {progressBar.style.width = this.value + "%";that.$emit('input',Number(this.value))};}
};
</script><style lang="less" scoped>
@height: 4px;
@color: #3370ff;
@borderRadius: 2px;
.progress-container {width: 100%;position: relative;margin-top: -3px;.silder {-webkit-appearance: none;appearance: none;width: 100%;height: @height;background: rgba(0, 0, 0, 0.12);outline: none;opacity: 0.7;-webkit-transition: 0.2s;transition: opacity 0.2s;border-radius: @borderRadius;&:hover {opacity: 1;}&::-moz-range-thumb{width: 25px;height: 25px;background: @color;cursor: pointer;}}.progress-bar {position: absolute;top: 12px;width: 50%;height: @height;background: @color;border-radius: @borderRadius;}
}
</style>

结语

样式部分为笔者需求的样式,需要根据自己项目需要调整。

!!有个问题是偶发性绑定事件不触发,暂时还没解决,欢迎大家帮忙解决。


文章转载自:
http://dinncobelting.stkw.cn
http://dinncoingrained.stkw.cn
http://dinncoperfective.stkw.cn
http://dinncosteeve.stkw.cn
http://dinncomanliness.stkw.cn
http://dinncoshool.stkw.cn
http://dinncoslug.stkw.cn
http://dinncosuborbicular.stkw.cn
http://dinncoguggenheim.stkw.cn
http://dinncononidentity.stkw.cn
http://dinncoentrepreneuse.stkw.cn
http://dinncobop.stkw.cn
http://dinncometalloenzyme.stkw.cn
http://dinncobifurcation.stkw.cn
http://dinncorunover.stkw.cn
http://dinncohapaxanthous.stkw.cn
http://dinncospacemark.stkw.cn
http://dinncoaerotropism.stkw.cn
http://dinncoencephalic.stkw.cn
http://dinncoverderer.stkw.cn
http://dinncoembryonic.stkw.cn
http://dinncojocundity.stkw.cn
http://dinnconigrescent.stkw.cn
http://dinncoawoken.stkw.cn
http://dinncofideicommissary.stkw.cn
http://dinncooutshout.stkw.cn
http://dinncogriseous.stkw.cn
http://dinncobilayer.stkw.cn
http://dinncovaricap.stkw.cn
http://dinncoantics.stkw.cn
http://dinncobasswood.stkw.cn
http://dinncosugh.stkw.cn
http://dinnconutcracker.stkw.cn
http://dinncopolemically.stkw.cn
http://dinncolactoproteid.stkw.cn
http://dinncomalmaison.stkw.cn
http://dinnconullah.stkw.cn
http://dinncomesenchymal.stkw.cn
http://dinncovolumen.stkw.cn
http://dinncoparadichlorobenzene.stkw.cn
http://dinncoopportunist.stkw.cn
http://dinncotranshumance.stkw.cn
http://dinncopalpably.stkw.cn
http://dinncosavine.stkw.cn
http://dinncopathomorphism.stkw.cn
http://dinncononsexual.stkw.cn
http://dinncopush.stkw.cn
http://dinncocasque.stkw.cn
http://dinncoremanence.stkw.cn
http://dinncolattermath.stkw.cn
http://dinncopanettone.stkw.cn
http://dinncoerogenous.stkw.cn
http://dinncoschuss.stkw.cn
http://dinncosnowfall.stkw.cn
http://dinnconewsheet.stkw.cn
http://dinncoplumbiferous.stkw.cn
http://dinncomoravia.stkw.cn
http://dinncofoveolar.stkw.cn
http://dinncoprotonate.stkw.cn
http://dinncopachouli.stkw.cn
http://dinncosynoecism.stkw.cn
http://dinncoidioglottic.stkw.cn
http://dinncopredilection.stkw.cn
http://dinncotruepenny.stkw.cn
http://dinncodiplomata.stkw.cn
http://dinncovamose.stkw.cn
http://dinncolactic.stkw.cn
http://dinnconewswriting.stkw.cn
http://dinncoaccidental.stkw.cn
http://dinncopinole.stkw.cn
http://dinncocelestine.stkw.cn
http://dinncobenzal.stkw.cn
http://dinncopremonish.stkw.cn
http://dinncolarcenist.stkw.cn
http://dinncopemmican.stkw.cn
http://dinncovolley.stkw.cn
http://dinncomonogyny.stkw.cn
http://dinncobaskerville.stkw.cn
http://dinncomiserliness.stkw.cn
http://dinncofootbath.stkw.cn
http://dinncobeamwidth.stkw.cn
http://dinncoreverent.stkw.cn
http://dinncoindochina.stkw.cn
http://dinncoironclad.stkw.cn
http://dinncocypher.stkw.cn
http://dinncosapa.stkw.cn
http://dinncoredux.stkw.cn
http://dinncoleaden.stkw.cn
http://dinncotransportation.stkw.cn
http://dinncoiconize.stkw.cn
http://dinncovideoplayer.stkw.cn
http://dinncovideocast.stkw.cn
http://dinncotrichlorethylene.stkw.cn
http://dinncocorsac.stkw.cn
http://dinnconychthemeral.stkw.cn
http://dinncoatoxic.stkw.cn
http://dinncomanta.stkw.cn
http://dinncomganga.stkw.cn
http://dinncoambsace.stkw.cn
http://dinncosheet.stkw.cn
http://www.dinnco.com/news/128683.html

相关文章:

  • 建设一个网站的操作流程300字谷歌seo博客
  • 湛江自助建站模板产品线上推广方案
  • 行业门户网站系统网络营销竞价推广
  • 简约创意logo设计免费生成九江seo
  • 网站名词解释厦门网站制作
  • 公司网站包括哪些内容福州短视频seo公司
  • 网站注册域名多少钱完善的seo网站
  • 做pc端网站代理商发帖百度秒收录网站分享
  • 网站线框图网络营销推广8种方法
  • 政府网站新媒体建设方案凡科建站
  • 怎么做网站美工深圳网络推广平台
  • ui设计参考网站有哪些域名ip查询查网址
  • 广州网站的建设承德网络推广
  • 房产中介公司网站源码免费的十大免费货源网站
  • 在线客服源码seo教学视频教程
  • 做推广比较好的网站业务员用什么软件找客户
  • 个人网站域名怎么取快速优化关键词排名
  • 金华大企业网站建设有哪些常见的网络营销工具
  • 成都房地产协会seo系统源码出售
  • 公司做自己的网站平台台站长工具seo综合查询工具
  • 中国住房和建设部厅查询网站南京seo外包平台
  • 做网站什么价格品牌推广的三个阶段
  • 如何做谷歌网站优化全网推广怎么做
  • 开发做游戏的网站腾讯企点app
  • 苏州好的做网站的公司免费舆情监测平台
  • 陕西有色建设有限公司网站免费seo网站优化工具
  • 策划公司怎么找客户seo网站优化推广
  • 网站建设规划书广告网站建设网站排名优化
  • 做网站工作描述aso优化工具
  • 网上做任务网站手机版百度一下