forked from sachinchoolur/lightgallery.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 4fdccfa
Showing
101 changed files
with
14,499 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"presets": ["es2015-loose"], | ||
"plugins": ["transform-es2015-modules-umd", "babel-plugin-transform-object-assign"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/**! | ||
* <%= pkg.name %> | <%= pkg.version %> | <%= moment().format('MMMM Do YYYY') %> | ||
* http://sachinchoolur.github.io/lightGallery/ | ||
* Copyright (c) 2016 Sachin N; | ||
* @license Apache 2.0 | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# EditorConfig helps developers define and maintain consistent | ||
# coding styles between different editors and IDEs | ||
# http://editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
# Change these settings to your own preference | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# We recommend you to keep these unchanged | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[{package.json,bower.json}] | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
lib | ||
npm-debug.log | ||
bower_components | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"preset": "airbnb", | ||
"validateIndentation": 4, | ||
"disallowTrailingComma": true, | ||
"requireTrailingComma": false, | ||
"excludeFiles": ["node_modules/**"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"node": true, | ||
"browser": true, | ||
"esversion": 6, | ||
"module": true, | ||
"bitwise": true, | ||
"camelcase": true, | ||
"curly": true, | ||
"eqeqeq": true, | ||
"immed": true, | ||
"indent": 4, | ||
"latedef": true, | ||
"newcap": true, | ||
"noarg": true, | ||
"quotmark": "single", | ||
"undef": true, | ||
"unused": true, | ||
"strict": true, | ||
"globals": { | ||
"utils": true, | ||
"picturefill": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/.*/ | ||
/demo/ | ||
/test/ | ||
/.* | ||
/bower.json | ||
/karma.conf.js | ||
/src |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
sudo: false | ||
language: node_js | ||
node_js: | ||
- stable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"name": "lightgallery.js", | ||
"version": "0.0.1", | ||
"description": "Full featured lightbox gallery. Zero dependencies", | ||
"main": [ | ||
"dist/js/lightgallery.min.js", | ||
"dist/css/lightgallery.css", | ||
"dist/fonts/lg.eot", | ||
"dist/fonts/lg.svg", | ||
"dist/fonts/lg.ttf", | ||
"dist/fonts/lg.woff", | ||
"dist/img/loading.gif", | ||
"dist/img/video-play.png", | ||
"dist/img/vimeo-play.png", | ||
"dist/img/youtube-play.png" | ||
], | ||
"keywords": [ | ||
"gallery", | ||
"lightbox", | ||
"image", | ||
"youtube", | ||
"vimeo" | ||
], | ||
"authors": [ | ||
"Sachin N <[email protected]>" | ||
], | ||
"homepage": "http://sachinchoolur.github.io/lightGallery/", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/sachinchoolur/lightGallery.git" | ||
}, | ||
"license": "Apache-2.0", | ||
"ignore": [ | ||
"README.md" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Contributing guide | ||
|
||
Want to contribute to clip.js? Awesome! | ||
There are many ways you can contribute, see below. | ||
|
||
## Opening issues | ||
|
||
Open an issue to report bugs or to propose new features. | ||
|
||
- Reporting bugs: describe the bug as clearly as you can, including steps to reproduce, what happened and what you were expecting to happen. Also include browser version, OS and other related software's (npm, Node.js, etc) versions when applicable. | ||
|
||
- Proposing features: explain the proposed feature, what it should do, why it is useful, how users should use it. Give us as much info as possible so it will be easier to discuss, access and implement the proposed feature. When you're unsure about a certain aspect of the feature, feel free to leave it open for others to discuss and find an appropriate solution. | ||
|
||
## Proposing pull requests | ||
|
||
Pull requests are very welcome. Note that if you are going to propose drastic changes, be sure to open an issue for discussion first, to make sure that your PR will be accepted before you spend effort coding it. | ||
|
||
Fork the lightgallery.js repository, clone it locally and create a branch for your proposed bug fix or new feature. Avoid working directly on the master branch. | ||
|
||
Implement your bug fix or feature, write tests to cover it and make sure all tests are passing (run a final `npm test` to make sure everything is correct). Then commit your changes, push your bug fix/feature branch to the origin (your forked repo) and open a pull request to the upstream (the repository you originally forked)'s master branch. | ||
|
||
## Documentation | ||
|
||
Documentation is extremely important and takes a fair deal of time and effort to write and keep updated. Please submit any and all improvements you can make to the repository's docs. | ||
|
||
## Known issues | ||
If you're using npm@3 you'll probably face some issues related to peerDependencies. | ||
https://github.com/npm/npm/issues/9204 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>jQuery lightGallery demo</title> | ||
<link href="../src/css/lightgallery.css" rel="stylesheet"> | ||
<style type="text/css"> | ||
body{ | ||
background-color: #152836 | ||
} | ||
.demo-gallery > ul { | ||
margin-bottom: 0; | ||
} | ||
.demo-gallery > ul > li { | ||
float: left; | ||
margin-bottom: 15px; | ||
margin-right: 20px; | ||
width: 200px; | ||
} | ||
.demo-gallery > ul > li a { | ||
border: 3px solid #FFF; | ||
border-radius: 3px; | ||
display: block; | ||
overflow: hidden; | ||
position: relative; | ||
float: left; | ||
} | ||
.demo-gallery > ul > li a > img { | ||
-webkit-transition: -webkit-transform 0.15s ease 0s; | ||
-moz-transition: -moz-transform 0.15s ease 0s; | ||
-o-transition: -o-transform 0.15s ease 0s; | ||
transition: transform 0.15s ease 0s; | ||
-webkit-transform: scale3d(1, 1, 1); | ||
transform: scale3d(1, 1, 1); | ||
height: 100%; | ||
width: 100%; | ||
} | ||
.demo-gallery > ul > li a:hover > img { | ||
-webkit-transform: scale3d(1.1, 1.1, 1.1); | ||
transform: scale3d(1.1, 1.1, 1.1); | ||
} | ||
.demo-gallery > ul > li a:hover .demo-gallery-poster > img { | ||
opacity: 1; | ||
} | ||
.demo-gallery > ul > li a .demo-gallery-poster { | ||
background-color: rgba(0, 0, 0, 0.1); | ||
bottom: 0; | ||
left: 0; | ||
position: absolute; | ||
right: 0; | ||
top: 0; | ||
-webkit-transition: background-color 0.15s ease 0s; | ||
-o-transition: background-color 0.15s ease 0s; | ||
transition: background-color 0.15s ease 0s; | ||
} | ||
.demo-gallery > ul > li a .demo-gallery-poster > img { | ||
left: 50%; | ||
margin-left: -10px; | ||
margin-top: -10px; | ||
opacity: 0; | ||
position: absolute; | ||
top: 50%; | ||
-webkit-transition: opacity 0.3s ease 0s; | ||
-o-transition: opacity 0.3s ease 0s; | ||
transition: opacity 0.3s ease 0s; | ||
} | ||
.demo-gallery > ul > li a:hover .demo-gallery-poster { | ||
background-color: rgba(0, 0, 0, 0.5); | ||
} | ||
.demo-gallery .justified-gallery > a > img { | ||
-webkit-transition: -webkit-transform 0.15s ease 0s; | ||
-moz-transition: -moz-transform 0.15s ease 0s; | ||
-o-transition: -o-transform 0.15s ease 0s; | ||
transition: transform 0.15s ease 0s; | ||
-webkit-transform: scale3d(1, 1, 1); | ||
transform: scale3d(1, 1, 1); | ||
height: 100%; | ||
width: 100%; | ||
} | ||
.demo-gallery .justified-gallery > a:hover > img { | ||
-webkit-transform: scale3d(1.1, 1.1, 1.1); | ||
transform: scale3d(1.1, 1.1, 1.1); | ||
} | ||
.demo-gallery .justified-gallery > a:hover .demo-gallery-poster > img { | ||
opacity: 1; | ||
} | ||
.demo-gallery .justified-gallery > a .demo-gallery-poster { | ||
background-color: rgba(0, 0, 0, 0.1); | ||
bottom: 0; | ||
left: 0; | ||
position: absolute; | ||
right: 0; | ||
top: 0; | ||
-webkit-transition: background-color 0.15s ease 0s; | ||
-o-transition: background-color 0.15s ease 0s; | ||
transition: background-color 0.15s ease 0s; | ||
} | ||
.demo-gallery .justified-gallery > a .demo-gallery-poster > img { | ||
left: 50%; | ||
margin-left: -10px; | ||
margin-top: -10px; | ||
opacity: 0; | ||
position: absolute; | ||
top: 50%; | ||
-webkit-transition: opacity 0.3s ease 0s; | ||
-o-transition: opacity 0.3s ease 0s; | ||
transition: opacity 0.3s ease 0s; | ||
} | ||
.demo-gallery .justified-gallery > a:hover .demo-gallery-poster { | ||
background-color: rgba(0, 0, 0, 0.5); | ||
} | ||
.demo-gallery .video .demo-gallery-poster img { | ||
height: 48px; | ||
margin-left: -24px; | ||
margin-top: -24px; | ||
opacity: 0.8; | ||
width: 48px; | ||
} | ||
.demo-gallery.dark > ul > li a { | ||
border: 3px solid #04070a; | ||
} | ||
.home .demo-gallery { | ||
padding-bottom: 80px; | ||
} | ||
</style> | ||
</head> | ||
<body class="home"> | ||
|
||
<div class="demo-gallery"> | ||
<ul id="lightgallery" class="list-unstyled row"> | ||
<li class="col-xs-6 col-sm-4 col-md-3" data-responsive="img/1-375.jpg 375, img/1-480.jpg 480, img/1.jpg 800" data-src="img/1-1600.jpg" data-sub-html="<h4>Fading Light</h4><p>Classic view from Rigwood Jetty on Coniston Water an old archive shot similar to an old post but a little later on.</p>"> | ||
<a href=""> | ||
<img class="img-responsive" src="img/thumb-1.jpg"> | ||
</a> | ||
</li> | ||
<li class="col-xs-6 col-sm-4 col-md-3" data-responsive="img/2-375.jpg 375, img/2-480.jpg 480, img/2.jpg 800" data-src="img/2-1600.jpg" data-sub-html="<h4>Bowness Bay</h4><p>A beautiful Sunrise this morning taken En-route to Keswick not one as planned but I'm extremely happy I was passing the right place at the right time....</p>"> | ||
<a href=""> | ||
<img class="img-responsive" src="img/thumb-2.jpg"> | ||
</a> | ||
</li> | ||
<li class="col-xs-6 col-sm-4 col-md-3" data-responsive="img/13-375.jpg 375, img/13-480.jpg 480, img/13.jpg 800" data-src="img/13-1600.jpg" data-sub-html="<h4>Bowness Bay</h4><p>A beautiful Sunrise this morning taken En-route to Keswick not one as planned but I'm extremely happy I was passing the right place at the right time....</p>"> | ||
<a href=""> | ||
<img class="img-responsive" src="img/thumb-13.jpg"> | ||
</a> | ||
</li> | ||
<li class="col-xs-6 col-sm-4 col-md-3" data-responsive="img/4-375.jpg 375, img/4-480.jpg 480, img/4.jpg 800" data-src="img/4-1600.jpg" data-sub-html="<h4>Bowness Bay</h4><p>A beautiful Sunrise this morning taken En-route to Keswick not one as planned but I'm extremely happy I was passing the right place at the right time....</p>"> | ||
<a href=""> | ||
<img class="img-responsive" src="img/thumb-4.jpg"> | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
<script src="https://cdn.jsdelivr.net/picturefill/2.3.1/picturefill.min.js"></script> | ||
<script src="lightgallery/js/lightgallery.js"></script> | ||
<script src="lightgallery/js/lg-fullscreen.js"></script> | ||
<script src="lightgallery/js/lg-thumbnail.js"></script> | ||
<script src="lightgallery/js/lg-video.js"></script> | ||
<script src="lightgallery/js/lg-autoplay.js"></script> | ||
<script src="lightgallery/js/lg-zoom.js"></script> | ||
<script src="lightgallery/js/lg-hash.js"></script> | ||
<script src="lightgallery/js/lg-pager.js"></script> | ||
<script type="text/javascript"> | ||
lightGallery(document.getElementById('lightgallery')); | ||
</script> | ||
</body> | ||
</html> |
Oops, something went wrong.