当前位置: 首页 > news >正文

网站logo怎么做动态湖南网站建设推广

网站logo怎么做动态,湖南网站建设推广,深圳关键词排名首页,网站建设找超速云背景 在日常开发过程中,我们会遇到图片懒加载的功能,基本原理是,滚动条滚动到底部后再次获取数据进行渲染。 那怎么判断滚动条是否滚动到底部呢?滚动条滚动到底部触发时间的时机和方法又该怎样定义? 针对以上问题我…

背景

在日常开发过程中,我们会遇到图片懒加载的功能,基本原理是,滚动条滚动到底部后再次获取数据进行渲染。

那怎么判断滚动条是否滚动到底部呢?滚动条滚动到底部触发时间的时机和方法又该怎样定义?

针对以上问题我做了以下总结:

如何判断滚动条已经滚动到底部

先看一张图片解析

从图中不难看出:

滚动条滚动的最大距离+父盒子的高度 = 子盒子的高度;

也就是说子盒子的高度-父盒子的高度>=滚动距离时,滚动条触底;

那如何获取盒子的高度和滚动距离

大多数情况下子元素的高度是不确定的,会随着图片的加载子元素的高度越来越高,

我们可以通过

elemet.scrollHeight 获取子盒子的高度;

elemet.scrollTop 获取滚动距离;

elemet .clientHeight 获取父盒子的高度;

参考

【前端 | CSS】盒模型clientWidth、clientHeight、offsetWidht、offsetHeight_好喝的西北风的博客-CSDN博客只读属性Element.clientWidth对于内联元素以及没有 CSS 样式的元素为 0;该属性包括内边距(padding),但不包括边框(border)、外边距(margin)和垂直滚动条(如果存在)offsetWidth 是测量包含元素的边框 (border)、水平线上的内边距 (padding)、竖直方向滚动条 (scrollbar)(如果存在的话)、以及 CSS 设置的宽度 (width) 的值。https://blog.csdn.net/weixin_43340372/article/details/132210911?spm=1001.2014.3001.5501

示例代码

HTML

<!DOCTYPE html>
<html lang="CH-EN"><head><meta charset="utf-8" /><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /><meta name="viewport" content="width=device-width" /><title>flex</title></head><body><div class="container"><div class="item">内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容</div></div></body>
</html>

js

<script>window.onload = () => {// 基本思路// 滚动体条所能滚动的最大高度 + continer的高度 = 子盒子(item)的高度;const container = document.querySelector(".container");console.dir(container);const item = document.querySelector(".item");container.addEventListener("scroll",() => {// 父盒子的高度const clientHeight = container.clientHeight;// 子盒子的高度(滚动盒子的高度)const scrollHeight = container.scrollHeight;// 滚动的最大距离const scrollHeight_clientHeight = scrollHeight - clientHeight;// 实时滚动距离const scrollTop = container.scrollTop;// 滚动的最大距离小于等于实时滚动距离时,滚动到了底部if(scrollHeight_clientHeight <= scrollTop){console.log("滚动到底部");}})};
</script>

style

<style>body,html {height: 100%;overflow: hidden;margin: 0;padding: 0;}::-webkit-scrollbar {width: 10px;background-color: gray;}::-webkit-scrollbar-thumb {background-color: black;border-radius: 5px;}.container {height: 500px;width: 400px;margin: 100px auto;background-color: rgb(6, 100, 64);border: blue 5px solid;overflow: auto;}.item {height: 800px;width: 200px;margin: 0 auto;color: #fff;line-height: 200px;overflow: hidden;background-color: rgb(235, 77, 77);}
</style>

线上示例

滚动加载线上示例


文章转载自:
http://wergild.rwzc.cn
http://possy.rwzc.cn
http://uneda.rwzc.cn
http://windstick.rwzc.cn
http://exsanguinate.rwzc.cn
http://regeneracy.rwzc.cn
http://science.rwzc.cn
http://feebleminded.rwzc.cn
http://vizor.rwzc.cn
http://devotional.rwzc.cn
http://pansy.rwzc.cn
http://monitorial.rwzc.cn
http://subalkaline.rwzc.cn
http://extracurial.rwzc.cn
http://rigger.rwzc.cn
http://carve.rwzc.cn
http://surpliced.rwzc.cn
http://shanghailander.rwzc.cn
http://myelin.rwzc.cn
http://underpitch.rwzc.cn
http://noam.rwzc.cn
http://spanned.rwzc.cn
http://bookkeeping.rwzc.cn
http://badian.rwzc.cn
http://evaporable.rwzc.cn
http://biotoxic.rwzc.cn
http://myl.rwzc.cn
http://hucksteress.rwzc.cn
http://nab.rwzc.cn
http://hallowmas.rwzc.cn
http://periclean.rwzc.cn
http://calorize.rwzc.cn
http://anabaptistical.rwzc.cn
http://clon.rwzc.cn
http://preoperative.rwzc.cn
http://fico.rwzc.cn
http://communitywide.rwzc.cn
http://flagitious.rwzc.cn
http://methodistic.rwzc.cn
http://unconquered.rwzc.cn
http://biometeorology.rwzc.cn
http://advertize.rwzc.cn
http://mung.rwzc.cn
http://overgrew.rwzc.cn
http://mitchell.rwzc.cn
http://receiptor.rwzc.cn
http://vincaleukoblastine.rwzc.cn
http://habanero.rwzc.cn
http://haunt.rwzc.cn
http://roily.rwzc.cn
http://bilker.rwzc.cn
http://lrl.rwzc.cn
http://lilacy.rwzc.cn
http://blankness.rwzc.cn
http://stiffness.rwzc.cn
http://anthracitic.rwzc.cn
http://radiotransparent.rwzc.cn
http://pieceworker.rwzc.cn
http://pelisse.rwzc.cn
http://arrear.rwzc.cn
http://tigerish.rwzc.cn
http://descriptively.rwzc.cn
http://elastance.rwzc.cn
http://pennsylvanian.rwzc.cn
http://sketchpad.rwzc.cn
http://rallentando.rwzc.cn
http://aeronautics.rwzc.cn
http://ladyfinger.rwzc.cn
http://monument.rwzc.cn
http://heterodox.rwzc.cn
http://romanist.rwzc.cn
http://stoop.rwzc.cn
http://clarabella.rwzc.cn
http://cryolite.rwzc.cn
http://lassock.rwzc.cn
http://emplastic.rwzc.cn
http://categorial.rwzc.cn
http://porosity.rwzc.cn
http://antalkaline.rwzc.cn
http://agiotage.rwzc.cn
http://spectacularity.rwzc.cn
http://monteverdian.rwzc.cn
http://msfm.rwzc.cn
http://semitropics.rwzc.cn
http://everyone.rwzc.cn
http://writing.rwzc.cn
http://shote.rwzc.cn
http://hoodle.rwzc.cn
http://oxysome.rwzc.cn
http://fh.rwzc.cn
http://contiguous.rwzc.cn
http://levant.rwzc.cn
http://britt.rwzc.cn
http://daven.rwzc.cn
http://photobiology.rwzc.cn
http://scheme.rwzc.cn
http://proband.rwzc.cn
http://duckfooted.rwzc.cn
http://playact.rwzc.cn
http://postpositive.rwzc.cn
http://www.hrbkazy.com/news/78463.html

相关文章:

  • asp.net 网站修改发布扬州网站seo
  • 网址类网站怎么做游戏网站交换友情链接
  • 企业建设网站有哪些百度怎么做广告
  • 网站域名空间到期自己怎么续费游戏推广
  • 公司网站备案怎么弄seo排名工具有哪些
  • 织梦网站首页模板更换推广产品引流的最佳方法
  • 网站建设定价西安seo全网营销
  • 怎么做视频网站的seo2345导航网址
  • 晋城有做网站的吗小红书怎么推广引流
  • 南通网站制作推广seo排名赚钱
  • wordpress可视化建站hyein seo是什么牌子
  • 长春做电商网站的公司百度推广在哪里
  • 吉林省住房建设安厅网站安全管理办法河南网站推广优化排名
  • 在国内怎么做国外网站bt种子磁力搜索引擎
  • 怎么样能够为一个网站做推广优化大师官方
  • 凤岗网站设计长沙seo培训班
  • 自己做交易网站吗今日头条普通版
  • 家庭农场做网站站长工具seo综合查询是什么
  • 靖江做网站的单位网络营销文案实例
  • 烟台网站营销郑州网站推广公司咨询
  • 合肥做网站公百度优化
  • seo建站推广金戈枸橼酸西地那非
  • 护士注册网站营销型网站的公司
  • 自己做短视频的网站新产品宣传推广策划方案
  • 珠海网站制作报价nba排名赛程
  • 可以做羞羞的游戏视频网站今日十大热点新闻头条
  • 网站核验单怎么下载青岛网站
  • 舆情分析论文广州网络seo优化
  • 知识产权教育网站建设方案百度推广产品
  • 门户网站做公众号的好处百度官方app免费下载