xxxgitone / learningProcess

:boom: 本仓库用于记录我的学习历程和学习笔记
33 stars 18 forks source link

我的学习日志(四) #5

Open xxxgitone opened 7 years ago

xxxgitone commented 7 years ago

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

任务:

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

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

使用一个dom对象

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