https://github.com/scottgriv/html-website_flip_book
A simple web dashboard that will flip web pages after a defined interval.
https://github.com/scottgriv/html-website_flip_book
dashboard html html-dashboard page-flip website-flipping
Last synced: 2 months ago
JSON representation
A simple web dashboard that will flip web pages after a defined interval.
- Host: GitHub
- URL: https://github.com/scottgriv/html-website_flip_book
- Owner: scottgriv
- License: unlicense
- Created: 2023-01-05T04:24:16.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-09T04:12:50.000Z (5 months ago)
- Last Synced: 2025-03-28T18:32:29.843Z (2 months ago)
- Topics: dashboard, html, html-dashboard, page-flip, website-flipping
- Language: HTML
- Homepage:
- Size: 396 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
---------------
Website Flip Book
An `HTML` flip book that allows you to flip through multiple web pages within a specificed time range.
---------------
## Table of Contents
- [Getting Started](#getting-started)
- [Resources](#resources)
- [License](#license)
- [Credits](#credits)## Getting Started
Update the `website_flip_book.html` file with the URLs you want to flip through.
- The URLs are stored in an array, so you can add as many as you want and set the time for each page to display.
- They will be displayed in the order they are listed in the array.```php
dashboards: [
{url: "http://localhost/web_page_1.html", time: 15},
{url: "http://localhost/web_page_2.html", time: 15},
]
```## Resources
- [HTML](https://www.w3schools.com/html/)
## License
This project is released under the terms of **The Unlicense**, which allows you to use, modify, and distribute the code as you see fit.
- [The Unlicense](https://choosealicense.com/licenses/unlicense/) removes traditional copyright restrictions, giving you the freedom to use the code in any way you choose.
- For more details, see the [LICENSE](LICENSE) file in this repository.## Credits
**Author:** [Scott Grivner](https://github.com/scottgriv)
**Email:** [[email protected]](mailto:[email protected])
**Website:** [scottgrivner.dev](https://www.scottgrivner.dev)
**Reference:** [Main Branch](https://github.com/scottgriv/html-website_flip_book)---------------