1.1.0 • Published 3 years ago

vue-scroll-up v1.1.0

Weekly downloads
103
License
MIT
Repository
github
Last release
3 years ago

vue-scroll-up

vue3 npm npm npm

Scroll up component for Vue 3.

Installation

Get from npm / yarn:

npm i vue-scroll-up
yarn add vue-scroll-up

👉 Vue 2 version check here

Usage

Use inside your app:

import VueScrollUp from 'vue-scroll-up'

export default {
  components: {
    VueScrollUp,
  }
}

Or

import VueScrollUp from 'vue-scroll-up'

const app = createApp({});

app.component(VueScrollUp.name, VueScrollUp);
HTML
<vue-scroll-up 
  tag="div"
  custom-class="vue-scroll-up"
  :scroll-duration="1000"
  :scroll-y="250"
  :always-show="false"
/>
Use Slot
<vue-scroll-up
  v-slot="{ isTop }"
  :always-show="true"
>
  {{ isTop ? '👇' : '👆' }}
</vue-scroll-up>

<vue-scroll-up
  v-slot="{ pointer }"
  :always-show="true"
>
  {{ pointer }}
</vue-scroll-up>
Design your scroll button 👉 See example here
  1. Add your custom class name
    <vue-scroll-up custom-class="my-scroll-up" />
  2. Add CSS
.my-scroll-up {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.658);
  border: rgba(0, 0, 0, 0.658);
  border-radius: 100px;
  bottom: 100px;
  color: white;
  cursor: pointer;
  display: flex;
  height: 55px;
  justify-content: center;
  position: fixed;
  right: 10px;
  width: 55px;
  z-index: 99;
}

.my-scroll-up::after {
  border: 2px solid white;
  border-radius: 10px;
  content: '';
  display: block;
  height: 25px;
  margin: 0 auto;
  width: 10px;
}

.my-scroll-up::before {
  animation: 2s top infinite;
  border: 1px solid white;
  border-radius: 10px;
  content: '';
  display: block;
  height: 10px;
  left: 49%;
  position: absolute;
  width: 0;
}

@keyframes top {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 450px) {
  .vue-scroll-up {
    bottom: 10px;
    transform: translateX(5px) scale(0.7);
  }
}

Attributes

ParameterTypeDefaultsDescription
tagstringspanDefault render element.
custom-classstringvue-scroll-upCustom your class name.
scroll-durationnumber200Page to top speed.
scroll-ynumber250Show button when scrollY equals a number.
always-showbooleanfalseAlways show button even scroll to top.

Slot

NameDescription
isTopScroll button is top.
pointerValue of scroll y.
1.1.0

3 years ago

2.0.0

3 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago