• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/ISSUE_TEMPLATE/H11-Mar-2019-7153

dist/H03-May-2022-896763

docs/H03-May-2022-

src/H11-Mar-2019-912771

.gitignoreH A D11-Mar-201915 21

README.mdH A D11-Mar-20192 KiB6336

bower.jsonH A D11-Mar-2019478 2423

package.jsonH A D11-Mar-20191.2 KiB5151

README.md

1# fancyBox
2
3jQuery lightbox script for displaying images, videos and more.
4Touch enabled, responsive and fully customizable.
5
6See the [project page](http://fancyapps.com/fancybox/3/) for documentation and a demonstration.
7
8Follow [@thefancyapps](//twitter.com/thefancyapps) for updates.
9
10
11## Quick start
12
131\.  Add latest jQuery and fancyBox files
14
15```html
16<script src="//code.jquery.com/jquery-3.2.1.min.js"></script>
17
18<link  href="/path/to/jquery.fancybox.min.css" rel="stylesheet">
19<script src="/path/to/jquery.fancybox.min.js"></script>
20```
21
22
232\.  Create links
24
25```html
26<a data-fancybox="gallery" href="big_1.jpg">
27    <img src="small_1.jpg">
28</a>
29
30<a data-fancybox="gallery" href="big_2.jpg">
31    <img src="small_2.jpg">
32</a>
33```
34
35
363\. Enjoy!
37
38
39## License
40
41fancyBox is licensed under the [GPLv3](http://choosealicense.com/licenses/gpl-3.0) license for all open source applications.
42A commercial license is required for all commercial applications (including sites, themes and apps you plan to sell).
43
44[Read more about fancyBox license](http://fancyapps.com/fancybox/3/#license).
45
46## Bugs and feature requests
47
48If you find a bug, please report it [here on Github](https://github.com/fancyapps/fancybox/issues).
49
50Guidelines for bug reports:
51
521. Use the GitHub issue search — check if the issue has already been reported.
532. Check if the issue has been fixed — try to reproduce it using the latest master or development branch in the repository.
543. Isolate the problem — create a reduced test case and a live example. You can use CodePen to fork any demo found on documentation to use it as a template.
55
56A good bug report shouldn't leave others needing to chase you up for more information.
57Please try to be as detailed as possible in your report.
58
59
60Feature requests are welcome. Please look for existing ones and use GitHub's "reactions" feature to vote.
61
62Please do not use the issue tracker for personal support requests - use Stack Overflow ([fancybox-3](http://stackoverflow.com/questions/tagged/fancybox-3) tag) instead.
63