当前位置:首页 > vue.js > 正文内容

vue 用当前对象获取坐标距离

自由小鸟3年前 (2022-04-20)vue.js1823

selectMeeting(day, jsEvent) {
//jsEvent 这个传进来就是$event
this.selectDay = day;
this.showMore=false;
this.meetingShowMore = true;
this.morePos = this.computePos(jsEvent.target);
//byludan 如果窗口到最右边往左移动
let totalMub=this.$refs.dates.getBoundingClientRect().width
let totalLeft=this.morePos.left
let totalWidth=226
if(totalLeft+totalWidth>totalMub){
this.morePos.left -= 189;
// console.log(‘morePos====’,totalMub-(totalLeft+totalWidth))
// console.log(‘ludanaaa11====’,jsEvent.target.getBoundingClientRect())
// console.log(‘ludanaaa====22’, this.$refs.dates.getBoundingClientRect())
// this.$emit(“meetingclick”, day.date, events, jsEvent);
}

  // this.morePos.left -= 80;
  // console.log('这里是当天的数据day===',day)
  // console.log('这里是当天的数据jsEvent===',jsEvent)
  let events = day.events.filter(item => {
    return item.eventType == 'meeting';
  });



}, //byludan end
//下面这个函数就是重点可以获取的左右坐标
computePos(target) { 
  let eventRect = target.getBoundingClientRect();
  let pageRect = this.$refs.dates.getBoundingClientRect();
  console.log()
  return {
    left: eventRect.left - pageRect.left,
    top: eventRect.top + eventRect.height - pageRect.top
  };
},

版权声明:本文由Web学习之路发布,如需转载请注明出处。

本文链接:https://webge.net/?id=133

“vue 用当前对象获取坐标距离” 的相关文章

vue3

vue3

安装vite?-Vite是vue作者开发的一款意图取代webpack的工具,其实原理是利用ES6的import会发送请求加载文件的特性,拦截这些请求,做一些预编译,省去webapck沉长的打包时间安装:npm install -D create-vite-app利用vite创建 vue3项目cre...

vue3 新属性使用

vue3 新属性使用

setUp(){} //可以把所有数据和方法都放这里面一起导出,这个是在实现挂载之前就会执行的 ref基本的数据类型 reactive可以把数组,对象转成响应式 readonly处理之后的数据不能进行修改 toRefs可以把响应对象的某个解构出来的值变成响应式,如果原数据没有key,那就会...

vue updateModel

vue updateModel

v-model高级用法...

vue render

vue render

let element={ tagName:'ul',//节点标签名 props:{//dom的属性,用一个对象存储键值对 id:'list' }, children:[//该节点的子节点...

vue 滚动条向下滑动加载更多

<div class="ld-container" id="computer-main" ref="cmdlist"></div> scrollMoreData() { //const scrollT...