2020年4月遇到的知识点整理
*注:本文是本人在工作过程中接触到的知识点整理。涉及的东西比价比较乱。如有错误,敬请指正和指导。1:浏览器默认禁用第三方cookies2:SameSite属性和Set-Cookie3:解决移动端滚动不顺畅和最外边固定包围的页面滚动问题当bar滑动到底部时,底部导航提示栏消失)html请仔细阅读协议并滑至底部
css.fixed-bottom-box{位置:固定;左:0;底部:0;高度:0.8rem;行高:0.8rem;宽度:100%;不透明度:0.4;居中对齐;color:#ffffff;}jsdata(){return{isShowFixedBox:true}},created(){window.addEventListener('scroll',()=>{让scrollTop=document.documentElement.scrollTop||document.body.scrollTop让windowHeight=document.documentElement.clientHeight||document.body.clientHeight让scrollHeight=document.documentElement.scrollHeight||document.body.scrollHeightif(scrollTop+windowHeight==scrollHeight){this.isShowFixedBox=false}else{this.isShowFixedBox=true}},true)}