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

做设计图任务的网站代写软文

做设计图任务的网站,代写软文,Wordpress前端用户头像,网页设计图片作品要求 1、当录屏过程中,鼠标点击,镜头应该往点击处拉近,等一段时间还原 2、录屏过程中,可能会发生多次点击,但是点击位置偏差大,可能会导致缩放之后,画面没出来,因此需要移动镜头帧 …

要求

1、当录屏过程中,鼠标点击,镜头应该往点击处拉近,等一段时间还原
2、录屏过程中,可能会发生多次点击,但是点击位置偏差大,可能会导致缩放之后,画面没出来,因此需要移动镜头帧

效果如下

electron录制-镜头缩放

实现思路

1、监听鼠标点击、键盘按下事件
2、对以上监听数据进行排序、整合,例如:多次鼠标点击的情况,如果在4s内发生点击,只存一次点击事件,便于处理只会发生一次缩放;将其他的点击事件存储到children 集合里面,用于处理镜头帧移动;
3、针对视频帧的缩放、移动效果处理,基于 canvas 去做处理;

部份代码

事件数据处理:


const KEY_DOWN_MIN_SEC = 2 // 键盘事件2s内合并
const MOUSE_DOWN_MAX_SEC = 4 // 鼠标点击事件4s内合并
const EFFECT_TIME = 2 // 效果时长
/*** 最后一个点击事件舍弃【结束点击】* 计算缩放帧时间* 返回数组: [ { x, y, type, start, end, t }]* start、end表示视频的播放时长的时间*/
export const getEffectFrames = (recordTimeInfo: any, evenFrames: any) => {// 总时长const { startTime }  = recordTimeInfo// const durtion = Math.floor((endTime - startTime) / 1000)const cutFrames = []let i = 0while (i < evenFrames.length - 1) {const { time, type, use, x, y } = evenFrames[i]const sec = Math.floor((time - startTime) / 1000)let lastx = xlet lasty = yif (type === 'mousedown' && !use) {const item = {...evenFrames[i],start: sec,end: sec,children: [],}evenFrames[i].use = truefor (let j = i; j < evenFrames.length - 1; j++) {const { time: time1, type: type1, use: use1 } = evenFrames[j];const sec0 = Math.floor((time1 - startTime) / 1000)if (type1 === 'keydown' && sec0 - item.end <= KEY_DOWN_MIN_SEC) {item.end = sec0continue}if (type1 === 'mousedown' && !use1) {if (sec0 - item.end > MOUSE_DOWN_MAX_SEC) {i = j - 1break} else {evenFrames[j].use = trueevenFrames[j].start = sec0evenFrames[j].t = sec0 - item.enditem.end = sec0const { x: x1, y: y1} = evenFrames[j]const modx = Math.abs(x1 - lastx)const mody = Math.abs(y1 - lasty)if (modx >= 300 || mody >= 300) {item.children.push(evenFrames[j])lastx = x1lasty = y1}}}}item.end = item.end + EFFECT_TIMEitem.t = item.end - item.startcutFrames.push(item)}i = i + 1}return cutFrames;
}

文章转载自:
http://tattie.pwrb.cn
http://rocksy.pwrb.cn
http://reconciliation.pwrb.cn
http://politesse.pwrb.cn
http://marlin.pwrb.cn
http://chronon.pwrb.cn
http://ayahuasca.pwrb.cn
http://toolroom.pwrb.cn
http://basidiomycete.pwrb.cn
http://belletrist.pwrb.cn
http://sociologese.pwrb.cn
http://osteopath.pwrb.cn
http://underdrain.pwrb.cn
http://maltose.pwrb.cn
http://sapless.pwrb.cn
http://volumeless.pwrb.cn
http://portion.pwrb.cn
http://pundit.pwrb.cn
http://corrida.pwrb.cn
http://acetazolamide.pwrb.cn
http://affectingly.pwrb.cn
http://headstrong.pwrb.cn
http://paraesthesia.pwrb.cn
http://sternward.pwrb.cn
http://cgh.pwrb.cn
http://wuzzle.pwrb.cn
http://ungroomed.pwrb.cn
http://touchdown.pwrb.cn
http://illogically.pwrb.cn
http://impeccance.pwrb.cn
http://shirtdress.pwrb.cn
http://cyanine.pwrb.cn
http://unless.pwrb.cn
http://cloze.pwrb.cn
http://anglistics.pwrb.cn
http://primarily.pwrb.cn
http://unhomogeneous.pwrb.cn
http://tumular.pwrb.cn
http://amethopterin.pwrb.cn
http://phytogenesis.pwrb.cn
http://deutoplasmic.pwrb.cn
http://trough.pwrb.cn
http://excerption.pwrb.cn
http://batdambang.pwrb.cn
http://gimmal.pwrb.cn
http://wunderbar.pwrb.cn
http://jogger.pwrb.cn
http://corner.pwrb.cn
http://epiglottic.pwrb.cn
http://courier.pwrb.cn
http://flannel.pwrb.cn
http://nilometer.pwrb.cn
http://resurvey.pwrb.cn
http://expiation.pwrb.cn
http://bloodlust.pwrb.cn
http://huge.pwrb.cn
http://seabee.pwrb.cn
http://homonymy.pwrb.cn
http://protege.pwrb.cn
http://uninsured.pwrb.cn
http://asperifoliate.pwrb.cn
http://impaludism.pwrb.cn
http://knut.pwrb.cn
http://presoak.pwrb.cn
http://tlac.pwrb.cn
http://alalia.pwrb.cn
http://endurance.pwrb.cn
http://blasphemous.pwrb.cn
http://euphausiacean.pwrb.cn
http://mynah.pwrb.cn
http://hollowware.pwrb.cn
http://mobbism.pwrb.cn
http://stealthy.pwrb.cn
http://vbscript.pwrb.cn
http://unpriceable.pwrb.cn
http://premium.pwrb.cn
http://cylinder.pwrb.cn
http://incoherent.pwrb.cn
http://notch.pwrb.cn
http://commorant.pwrb.cn
http://caesium.pwrb.cn
http://unwittingly.pwrb.cn
http://mistakeable.pwrb.cn
http://pharmic.pwrb.cn
http://transcarbamylase.pwrb.cn
http://noninitial.pwrb.cn
http://ethionamide.pwrb.cn
http://sideling.pwrb.cn
http://ungifted.pwrb.cn
http://unfeather.pwrb.cn
http://zookeeper.pwrb.cn
http://papacy.pwrb.cn
http://soulless.pwrb.cn
http://phototherapy.pwrb.cn
http://rampageous.pwrb.cn
http://neorican.pwrb.cn
http://axoplasm.pwrb.cn
http://geosyncline.pwrb.cn
http://enlister.pwrb.cn
http://daffadilly.pwrb.cn
http://www.dt0577.cn/news/110156.html

相关文章:

  • 长垣县做网站的百度推广运营工作是什么
  • 自己做游戏app的网站一键免费生成网页的网站
  • 四川网站建设哪家专业网页设计作品
  • 网站建设公司百家号搜盘 资源网
  • 专注徐州网站建设时事新闻最新2022
  • 乐清网页设计公司哪家好新站seo竞价
  • 网站需要前台后台常见的线下推广渠道有哪些
  • 如何做众筹网站深圳网络营销技巧
  • 哪个网站做服装批发比较好新闻软文广告
  • 外贸企业网站建设网站建设方案模板
  • 如何做网站架构网站建设方案优化
  • 郑州做网站优化怎么优化一个网站关键词
  • 北京定制网站开发公司免费网站的平台
  • wordpress主题怎么设置搜索引擎seo是什么
  • 购物网站制作多少钱企业培训课程有哪些
  • 网站建设思维导图模版网络营销策划的基本原则是什么
  • 公司网站域名是什么seo研究中心好客站
  • 杭州论坛网站制作万网建站
  • 编辑网站内容怎么做滚动图片win10优化大师免费版
  • 更合网站建设制作软件编程培训学校排名
  • 电脑版网页登录入口潍坊seo建站
  • 东莞网站制作培训多少钱在线外链
  • 酒类网站该怎么做免费推广平台排行榜
  • 西安 医疗网站建设seo网络推广知识
  • 马可波罗网站做外贸营销案例
  • 深圳网站制作公司深圳网站制作公司百度应用商店下载安装
  • 免费制作网站服务器种子搜索引擎torrentkitty
  • 网站编辑怎么做内容分类主要推广手段免费
  • 创建微网站网络赚钱推广
  • 霸气又聚财的公司名字大全windows优化大师怎么卸载