2021
04-27
04-27
如何利用JS检查元素是否在视口内
前言分享两个监测元素是否在视口内的方法1.位置计算使用Element.getBoundingClientRect()方法返回元素相对于视口的位置constisElementVisible=(el)=>{constrect=el.getBoundingClientRect();};获取浏览器窗口的宽高constisElementVisible=(el)=>{constrect=el.getBoundingClientRect();constvWidth=window.innerWidth||document.documentElement.clientWidth;constvHeight=window.innerHeight||...
继续阅读 >