# antiscroller

> OS X Lion style cross-browser native scrolling on the web.

Latest version **1.0.0** (published 2019-10-13) · MIT license · 0 weekly downloads

## Install

```sh
npm install antiscroller
pnpm add antiscroller
yarn add antiscroller
bun add antiscroller
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2019-10-13 |
| First published | 2019-10-13 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 36.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Jyothi Babu Araja |
| Maintainers | arajajyothibabu |
| Keywords | scroll, antiscroll, osx |

## Links

- npm: https://www.npmjs.com/package/antiscroller
- Repository: https://github.com/arajajyothibabu/antiscroller
- Homepage: https://github.com/arajajyothibabu/antiscroller#readme
- Issues: https://github.com/arajajyothibabu/antiscroller/issues
- npm.io page: https://npm.io/package/antiscroller

## Recent versions

- 1.0.0 (latest) — 2019-10-13

## README

# antiscroller
OS X Lion style cross-browser native scrolling on the web.

A fork from original [Antiscroll](https://github.com/Automattic/antiscroll) library with no jQuery dependency.

### Usage

#### Install using NPM

`npm i antiscroller`

### Add using UNPKG

`<script src="https://unpkg.com/antiscroller"></script>`


#### Initialize with the container

```html
<div id="container" class="antiscroll-wrap">
    <div class="antiscroll-inner">
        <!-- Your scrollable large content -->
    </div>
</div>
```

```javascript
import Antiscroll from 'antiscroller'; //for ES6

var container = document.getElementById("container");
var scroller = new Antiscroll(container, {
    autoHide: false
});
```

---
_Source: https://npm.io/package/antiscroller · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
