An open API service indexing awesome lists of open source software.

https://github.com/naver/egjs-conveyer

Conveyer adds Drag gestures to your Native Scroll.
https://github.com/naver/egjs-conveyer

cfcs conveyer drag gesture reactive scroll use

Last synced: 5 months ago
JSON representation

Conveyer adds Drag gestures to your Native Scroll.

Awesome Lists containing this project

README

          


Conveyer Logo

Conveyer


version
npm weekly downloads
npm bundle size (scoped)
Github actions
Coveralls github




Angular
React
Vue
Vue
Svelte


Demo / Documentation / Other components


Conveyer adds Drag gestures to your Native Scroll.
📱💻🖥

-----

## ✨ Features
- You can use Native Scroll-like behavior through Drag.
- By adding easing features such as bounce, elasticity, and back, you can create smooth scrolling animations like Native Scroll.
- Supports Reactive Properties that can change state through properties that automatically detect changes instead of events.
- You can use custom scroll events like onBeginScroll, onFinishScroll, onReachStart, onLeaveStart,

## ⚙️ Installation
#### npm
```bash
$ npm install --save @egjs/conveyer
```

#### CDN
- unpkg: https://unpkg.com/@egjs/conveyer/dist/

## 🏃 Quick Start
#### HTML

```html







```
#### ES Modules
```ts
import Conveyer from "@egjs/conveyer";

const conveyer = new Conveyer(".items");
```

#### With CDN
```html

const conveyer = new Conveyer(".items");

```
## How to use
#### HTML
```html
prev
next







```
#### JS
```js
import Conveyer from "@egjs/conveyer";

// Since events occur during initialization, set `autoInit` to false if you want to register events.
const conveyer = new Conveyer(".items", {
autoInit: false,
});

const prev = document.querySelector(".prev");
const next = document.querySelector(".next");

prev.addEventListener("click", () => {
// start to end
conveyer.scrollIntoView("start", {
align: "end",
duration: 500,
excludeStand: true,
});
});
next.addEventListener("click", () => {
// end to start
conveyer.scrollIntoView("end", {
align: "start",
duration: 500,
excludeStand: true,
});
});
conveyer.subscribe("isReachStart", value => {
prev.disabled = value;
});
conveyer.subscribe("isReachEnd", value => {
next.disabled = value;
});

conveyer.init();
```

## 📦 Packages
|Package|Version|Description|
|:-----:|:-----:|:-----:|
|[**@egjs/conveyer**](https://github.com/naver/egjs-conveyer/blob/main/packages/conveyer/README.md)|version|Conveyer adds Drag gestures to your Native Scroll.|
|[**@egjs/ngx-conveyer**](https://github.com/naver/egjs-conveyer/blob/main/packages/ngx-conveyer/README.md)|version|Angular [Angular](https://angular.io/) port of @egjs/conveyer|
|[**@egjs/react-conveyer**](https://github.com/naver/egjs-conveyer/blob/main/packages/react-conveyer/README.md)|version|React [React](https://reactjs.org/) port of @egjs/conveyer|
|[**@egjs/vue-conveyer**](https://github.com/naver/egjs-conveyer/blob/main/packages/vue-conveyer/README.md)|version|Vue.js [Vue.js@3](https://vuejs.org/v2/guide/index.html) port of @egjs/conveyer|
|[**@egjs/vue2-conveyer**](https://github.com/naver/egjs-conveyer/blob/main/packages/vue2-conveyer/README.md)|version|Vue.js [Vue.js@2](https://v3.vuejs.org/) port of @egjs/conveyer|
|[**@egjs/svelte-conveyer**](https://github.com/naver/egjs-conveyer/blob/main/packages/svelte-conveyer/README.md)|version|Svelte [Svelte](https://svelte.dev/) port of @egjs/conveyer|

## 🌐 Supported Browsers
|IE|Chrome|Firefox|Safari|iOS|Android|
|:---:|:---:|:---:|:---:|:---:|:---:|
|9+(With polyfill), 11+ for Angular & Svelte|Latest|Latest|Latest|7+|4+|

## 📼 Demos
Check our [Demos](https://naver.github.io/egjs-conveyer/).

## 📖 Documentation
See [Documentation](https://naver.github.io/egjs-conveyer/docs/api/Conveyer) page.

## 🙌 Contributing
See [CONTRIBUTING.md](https://github.com/naver/egjs-conveyer/blob/main/CONTRIBUTING.md).

## 📝 Feedback
Please file an [Issue](https://github.com/naver/egjs-conveyer/issues).

## 📜 License
@egjs/conveyer is released under the [MIT license](LICENSE).

```
Copyright (c) 2022-present NAVER Corp.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
```