New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@autots/sticky

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@autots/sticky

a sticky lib to simulate stickily positioned element

latest
Source
npmnpm
Version
0.0.3
Version published
Maintainers
1
Created
Source

sticky

a sticky lib to simulate stickily positioned element.

Features

  • typescript features & vanilla js
  • use CSS sticky firstly
  • support ie9+
  • only support sticky top

Installing

Using npm:

$ npm install @autots/sticky -S

Using yarn:

$ yarn add @autots/sticky

Example

layouts

<section id="demo">
  <div class="child"></div>
</section>

Note: When the host browser doesn't support css position: sticky, the lib will fall back to use scroll event on window object, and set some css properties to his fisrtElementChild.

import as a module

import Sticky from '@autots/sticky';

// 1. The simplest way
new Sticky('#demo');

// 2. use config
new Sticky('#demo', {
  top: 10,
  zIndex: 100
})

import as a lib

<script src="dist/sticky.min.js"></script>

<script>
  var stickyDemo = new AutoTs.Sticky(el, config);
</script>

Config

NameTypeDefaultOptionalDescription
mode'sticky' or 'affix''sticky'truenormal affix(fixed) mode or new sticky feature |
scrollReferstring | HTMLElement | Document | Windowwindowtruescroll container
offsetParentstringnulltrueoffset parent el |
topnumber0trueCSS top (px) property
styleobject{}trueCSS property
holderStyleobject{}trueCSS property for the Target Placeholder Element
throttlebooleanfalsetruethrottle feature when use scroll event(assigned when encounter special cases)

scrollRefer & offsetParent must have a non-static position.

Todo

  • support config direction

Keywords

sticky

FAQs

Package last updated on 30 Apr 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts