记录一下平常工作中常用插件
1.pl-table表格插件
https://developer.aliyun.com/mirror/npm/package/pl-table
2.moment时间规范插件
http://momentjs.cn/
3.Swiper滑动特效插件
https://www.swiper.com.cn/
4.animate.css动画插件
https://animate.style/
除此之外,记录一下平常所用到的一些方法函数等
1.getBoundingClientRect()
var object=document.getElementById(‘box’);
rectObject = object.getBoundingClientRect();
this.tableHeight = window.innerHeight - rectObj.top - 80;
this.tableWidth = window.innerWidth - rectObj.left - 50;
rectObject.top:元素上边到视窗上边的距离;
rectObject.right:元素右边到视窗左边的距离;
rectObject.bottom:元素下边到视窗上边的距离;
rectObject.left:元素左边到视窗左边的距离;
rectObject.width:是元素自身的宽
rectObject.height是元素自身的高