Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/minericefield/vue-prevent-wheel-transitions
https://github.com/minericefield/vue-prevent-wheel-transitions
npm-package typescript vue
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/minericefield/vue-prevent-wheel-transitions
- Owner: minericefield
- License: mit
- Created: 2021-01-19T14:55:03.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-19T17:12:57.000Z (almost 4 years ago)
- Last Synced: 2024-09-16T14:09:55.512Z (2 months ago)
- Topics: npm-package, typescript, vue
- Language: TypeScript
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# vue-prevent-wheel-transitions
A vue plugin for preventing the screen transitions fired by wheeling.
## Quick start
##### Installing the module.
```console
$ npm install vue-prevent-wheel-transitions
```
or
```console
$ yarn add vue-prevent-wheel-transitions
```##### In your main process.
```javascript
import VuePreventWheelTransitions from 'vue-prevent-wheel-transitions'Vue.use(VuePreventWheelTransitions)
```##### In your component.
````html
.the-outer {
width: 100px;
overflow-x: auto;
}
.the-inner {
width: 200px;
}````
## License
This software is distributed under [MIT license](LICENSE.txt).
## Support
No Vue3 support currently.
##### Note
This project was created as my personal learning theme for self-study days within my company.