返回介绍

图钉

发布于 2020-02-15 17:34:05 字数 1684 浏览 1124 评论 0 收藏 0

图钉能把页面上的某个元素一直固定在那里,页面右侧的导航就是一个活生生的例子。

示例代码

$('.pushpin-demo-nav').each(function() {
    var $this = $(this);
    var $target = $('#' + $(this).attr('data-target'));
    $this.pushpin({
top: $target.offset().top,
bottom: $target.offset().top + $target.outerHeight() - $this.height()
    });
  });
// Only necessary for window height sized blocks.
html, body, .block {
  height: 100%;
}

jQuery 插件初始化

这是一个简单的图钉初始化。让我们看看这些选项是什么和如何根据需要定制。

$(document).ready(function(){
$('.target').pushpin({
top: 0,
bottom: 1000,
offset: 0
});
});

CSS 类

一个图钉元素有三种状态。一个上面和下面的滚动的阈值和固定的状态,因为图钉改变定位,那么你的元素将有不同状态的变化,使用这些类来正确表示图钉的状态。

// Class for when element is above threshold
  .pin-top {
    position: relative;
  }

  // Class for when element is below threshold
  .pin-bottom {
    position: relative;
  }

  // Class for when element is pinned
  .pinned {
    position: fixed !important;
  }

jQuery 插件选项

选项名称描述
Top滚动条距离顶部有多少像素的时候开始固定。 (默认: 0)
Bottom滚动条距离底部多少像素的时候取消固定 (默认: Infinity)
Offset滚动条距离顶部有多少像素偏移量的时候开始固定.(默认: 0)

移除

从一个元素中移除图钉,通过 'remove' 作为图钉函数的选项。

// Removes pushpin and pushpin classes
$('.tabs-wrapper .row').pushpin('remove');

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文