百分百源码网-让建站变得如此简单! 登录 注册 签到领金币!

主页 | 如何升级VIP | TAG标签

当前位置: 主页>网站教程>CSS教程> CSS实现基于会员滚动利用(代码)
分享文章到:

CSS实现基于会员滚动利用(代码)

发布时间:09/01 来源:未知 浏览: 关键词:
本篇文章给大家带来的内容是关于CSS实现基于会员滚动利用(代码),有必然的参照 价值,有需要的伴侣可以参照 一下,但愿对你有所帮忙。

通过将当前滚动偏移映射到html元素上的属性,我们可以按照当前滚动位置设定页面上的元素样式。我们可以使用它来构建一个浮动导航组件。

这是我们将使用的HTML,<header>当我们向下滚动时,我们但愿在内容之上浮动的一个很好的组件。

<header>I'm the page header</header>
<p>Lot's of content here...</p>
<p>More beautiful content...</p>
<p>Content...</p>

第一,我们将监听该'scroll'事件,document并且scrollY每次会员滚动时我们都会恳求当前位置。

document.addEventListener('scroll', () => {
  document.documentElement.dataset.scroll = window.scrollY;
});

我们将滚动位置储备在html元素的数据属性中。假如您使用开发工具查看DOM,它将如下所示。

<html data-scroll="0">

此刻我们可以使用此属性来设定页面上的元素样式。

/* Make sure the header is always at least 3em high */
header {
  min-height: 3em;
  width: 100%;
  background-color: #fff;
}

/* Reserve the same height at the top of the page as the header min-height */
html:not([data-scroll='0']) body {
  padding-top: 3em;
}

/* Switch to fixed positioning, and stick the header to the top of the page */
html:not([data-scroll='0']) header {
  position: fixed;
  top: 0;
  z-index: 1;

  /* This box-shadow will help sell the floating effect */
  box-shadow: 0 0 .5em rgba(0, 0, 0, .5);
}

根本上就是这样,当向下滚动时,标题此刻将主动从页面中别离并浮动在内容之上。JavaScript代码并不关怀这一点,它的任务就是将滚动偏移量放在数据属性中。这很好,由于JavaScript和CSS之间没有严密耦合。

仍有一些改善,主如果在机能领域。

但第一,我们必需修复足本,以顺应页面加载时滚动位置不在顶部的状况。在这些状况下,标题将显现错误。

页面加载时,我们必需快速猎取当前滚动偏移量。这确保了我们始终与当前的事态同步。

// Reads out the scroll position and stores it in the data attribute
// so we can use it in our stylesheets
const storeScroll = () => {
  document.documentElement.dataset.scroll = window.scrollY;
}

// Listen for new scroll events
document.addEventListener('scroll', storeScroll);

// Update scroll position for first time
storeScroll();

接下来我们将看一些机能改善。假如我们恳求该scrollY位置,阅读器将必需运算页面上每个元素的位置,以确保它返回准确的位置。假如我们不强迫它每次滚动互动都这样做是最好的。

要做到这一点,我们需要一个debounce办法,这个办法会将我们的恳求排队,直到阅读器预备好绘制下一帧,此时它已经运算了页面上所有元素的位置,所以它不会再来一遍。

// The debounce function receives our function as a parameter
const debounce = (fn) => {

  // This holds the requestAnimationFrame reference, so we can cancel it if we wish
  let frame;

  // The debounce function returns a new function that can receive a variable number of arguments
  return (...params) => {
    
    // If the frame variable has been defined, clear it now, and queue for next frame
    if (frame) { 
      cancelAnimationFrame(frame);
    }

    // Queue our function call for the next frame
    frame = requestAnimationFrame(() => {
      
      // Call our function and pass any params we received
      fn(...params);
    });

  } 
};

// Reads out the scroll position and stores it in the data attribute
// so we can use it in our stylesheets
const storeScroll = () => {
  document.documentElement.dataset.scroll = window.scrollY;
}

// Listen for new scroll events, here we debounce our `storeScroll` function
document.addEventListener('scroll', debounce(storeScroll));

// Update scroll position for first time
storeScroll();

通过标志事件,passive我们可以告诉阅读器我们的滚动事件不会被触摸交互取消(例如与谷歌地图等插件交互时)。这同意阅读器马上滚动页面,由于它此刻知道该事件不会被取消。

document.addEventListener('scroll', debounce(storeScroll), { passive: true });

本篇文章到这里就已经全部完毕了,更多其他出色内容可以关注PHP中文网的CSS视频教程栏目!

以上就是CSS实现基于会员滚动利用(代码)的具体内容,更多请关注百分百源码网其它相关文章!

打赏

打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

百分百源码网 建议打赏1~10元,土豪随意,感谢您的阅读!

共有153人阅读,期待你的评论!发表评论
昵称: 网址: 验证码: 点击我更换图片
最新评论

本文标签

广告赞助

能出一分力是一分吧!

订阅获得更多模板

本文标签

广告赞助

订阅获得更多模板