learningProcess icon indicating copy to clipboard operation
learningProcess copied to clipboard

我的学习日志(四)

Open shimuash opened this issue 8 years ago • 0 comments

终于又回到学校了,在家待了几天,每天就简单的写了点代码,也没有学习其他的知识。在家还是没那个气氛,回家见了很多朋友,暑假不打算在家,所以把要见的人,要做的事都做了,回学校安安心心学习。

任务:

  • [ ] vnpastime播放器增加功能

今天又重新用到很久以前学习到的知识点getBoundingClientRect()

这个方法返回一个矩形对象,包含六个属性,除了left、top、right和bottom,还包含自身的width和height

使用一个dom对象

   const clientRect = domObj.getBoundingClientRect()
   clientRect.top //元素上边距离页面上边的距离
   clientRect.right //元素右边距离页面左边的距离 
   ......  //其他类似

shimuash avatar Jun 06 '17 13:06 shimuash