2.0.1 • Published 1 month ago

vue-sticky-element v2.0.1

Weekly downloads
33
License
MIT
Repository
github
Last release
1 month ago

vue-sticky-element

This component can help you:

  • Create a navbar that will stick to screen when scrolled past it
  • Hide navbar when scrolling down and show it when scrolling back up
  • Handles common bug of touch screen causing navbar to rapidly show/hide when holding your finger on screen

Supports both vue-2 and vue-3

component in action

Edit vue-sticky-element example

Getting Started

npm install vue-sticky-element
# or 
yarn add vue-sticky-element

Then add it to your vue application:

// add it to your vue application:
import StickyElement from 'vue-sticky-element';
import 'vue-sticky-element/css'; // this is required for default styles to work.

export default {
  components: {
    StickyElement
  }
}

// or you can use the .vue import:
import StickyElement from 'vue-sticky-element/vue';

Then use it:

<template>
  <div > 
    <!-- 
      .
      .
      .
     -->
     <StickyElement> 
       <Nav>...</Nav>
     </StickyElement>
    
  </div>
</template>

Default behaviour

This component wraps the default slot of it with a fixed height div and makes the element stick to top of screen (out of view) using position: fixed whenever user scrolls past the element completely. then shows the element again if the user scrolls up a bit (adjustable by scrollBackThreshold) with a fast transition.

If you want to change the default behaviour use the following properties

properties

visibleOnDirection - 'up','down','disabled', default: 'up'

Should the hidden sticky element come into view when scrolling which direction ? if 'disabled' is used, element is displayed all the time

stickMode - 'element-start', 'element-end', default: 'element-end'

Should the element stick when element is out of view completely or as soon as it reaches the top of screen ?

stuckClass - default: 'vue-sticky-element--stuck'

The class that is applied when the element is stuck

showClass - default: 'vue-sticky-element--show'

The class that is applied whenn the element should be moved into view (related to visibleOnDirection)

transitionClass - default: 'vue-sticky-element--transition'

The class that is applied whenn the element is being moved into or out of view

transitionDuration - default: 100

The transition duration of move transform. this is to wait before applying transition class, so the navbar doesn't glitch into screen when it's getting stuck. this should be the same amount of your transition duration if a custom class is used instead of the default one. changing this does not change the speed of navbar transition.

scrollBackThreshold - default: 65

When using this element as navbar, touch screen users will finding it very annoying when they hold their fingers on screen. because normally when you put your fingers on screen, it wobbles up and down, causing scroll to move up and down multiple times in a row. you can adjust how much user has to scroll back (along the visibleOnDirection) for the element to show.

skipChecks - default: false

When true, stops checking for scroll positions (essentially, does not do anything). this can help when you need to freeze and scroll the navbar.

forceShow - default: false

Force applies the showClass.

scrollElement - default: undefined

The element to add onscroll event listener to instead of window. this is useful for native apps like ionic where scrolling element might not be window. this can be changed in runtime and the change will be detected, so for example you can get your element in onMounted using getScrollElement and you will be fine.

events

stuck - true | false

When stuck state changes, emits the new value

show - true | false

When show state changes, emits the new value

Credits

Small part of the codes used in this component were taken from vue-fixed-header and this answer on stackoverflow with some edits


Changelog

Check CHANGELOG.md

2.0.0-beta.2

1 month ago

2.0.0-beta.1

1 month ago

2.0.0-beta.6

1 month ago

2.0.0-beta.5

1 month ago

2.0.1

1 month ago

2.0.0-beta.4

1 month ago

2.0.0

1 month ago

2.0.0-beta.3

1 month ago

1.6.2

9 months ago

1.7.0

9 months ago

1.6.1

9 months ago

1.6.0

12 months ago

1.5.0

12 months ago

1.4.0

12 months ago

1.3.0

12 months ago

1.2.5

1 year ago

1.2.4

1 year ago

1.2.0

2 years ago

1.2.3

2 years ago

1.2.2

2 years ago

1.2.1

2 years ago

1.1.2

3 years ago

1.1.1

3 years ago

1.1.0

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago