A simple dependency-free Javascript plugin to show horizontal overflow of tables
npm install table-scroll-shadow[![Contributors][contributors-shield]][contributors-url]
[![Forks][forks-shield]][forks-url]
[![Stargazers][stars-shield]][stars-url]
[![Issues][issues-shield]][issues-url]
[![MIT License][license-shield]][license-url]
[![LinkedIn][linkedin-shield]][linkedin-url]

A simple dependency-free Javascript plugin to show horizontal overflow of tables
View Demo
·
Report Bug
·
Request Feature
---
Table Scroll Shadow enables easy responsive tables by checking if the table overflows it's container across all viewports. When overflow is present, it allows horizontal scrolling whilst adding an extra visual indicator in the shape of shadows to make it more obvious where the overflow is.
Here are a few key features of the plugin:
- Small file size, coming in at only 3 kB
- No jQuery dependency
- Built in options
- Just install and enjoy!
Pull in the latest version of the plugin with one of the following commands:
#### NPM
``sh`
npm install table-scroll-shadow
#### Yarn
`sh`
yarn add table-scroll-shadow
Once you have installed the plugin, you will need to add a little bit of necessary markup around the tables that you want to scroll (the class names can be changed via the options).
`html`
The plugin can be referenced via the global variable, TableScrollShadow.
`js`
const table = new TableScrollShadow()
table.init()
All options for this plugin are optional, and have sensible defaults. The defaults are shown below:
`js`
TableScrollShadow({
wrapperClass: '.table-wrapper',
scrollAreaClass: '.table-scroll',
shadowColor: 'rgba(0, 0, 0, 0.25)',
shadowSize: '2em',
throttleDelay: 75
})
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".
Don't forget to give the project a star! Thanks again!
1. Fork the Project
2. Create your Feature Branch (git checkout -b feature/AmazingFeature)git commit -m 'Add some AmazingFeature'
3. Commit your Changes ()git push origin feature/AmazingFeature
4. Push to the Branch ()
5. Open a Pull Request
Distributed under the MIT License. See LICENSE.md` for more information.
Gauthier Blanpain - gauthier.blanpain@me.com
Project Link: https://github.com/gauthierblanpain/table-scroll-shadow
[contributors-shield]: https://img.shields.io/github/contributors/gauthierblanpain/table-scroll-shadow.svg?style=for-the-badge
[contributors-url]: https://github.com/gauthierblanpain/table-scroll-shadow/graphs/contributors
[forks-shield]: https://img.shields.io/github/forks/gauthierblanpain/table-scroll-shadow.svg?style=for-the-badge
[forks-url]: https://github.com/gauthierblanpain/table-scroll-shadow/network/members
[stars-shield]: https://img.shields.io/github/stars/gauthierblanpain/table-scroll-shadow.svg?style=for-the-badge
[stars-url]: https://github.com/gauthierblanpain/table-scroll-shadow/stargazers
[issues-shield]: https://img.shields.io/github/issues/gauthierblanpain/table-scroll-shadow.svg?style=for-the-badge
[issues-url]: https://github.com/gauthierblanpain/table-scroll-shadow/issues
[license-shield]: https://img.shields.io/github/license/gauthierblanpain/table-scroll-shadow.svg?style=for-the-badge
[license-url]: https://github.com/gauthierblanpain/table-scroll-shadow/blob/main/LICENSE.md
[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=for-the-badge&logo=linkedin&colorB=555
[linkedin-url]: https://www.linkedin.com/in/gauthier-blanpain-05b9a394/