-
-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Arinas
committed
Oct 21, 2020
1 parent
e624a3f
commit 5de0e87
Showing
17 changed files
with
132 additions
and
111 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "simplelightbox", | ||
"version": "2.4.1", | ||
"version": "2.5.0", | ||
"homepage": "https://simplelightbox.com/", | ||
"authors": [ | ||
"André Rinas <[email protected]> (https://www.andrerinas.de)" | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
<meta charset="utf-8"> | ||
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport" /> | ||
<link href="https://fonts.googleapis.com/css?family=Raleway:300,400,700" rel="stylesheet"> | ||
<link rel="stylesheet" href="../dist/simple-lightbox.css?v2.4.1" /> | ||
<link rel="stylesheet" href="../dist/simple-lightbox.css?v2.5.0" /> | ||
<link rel="stylesheet" href="demo.css" /> | ||
<title>SimpleLightbox by André Rinas</title> | ||
</head> | ||
|
@@ -14,7 +14,7 @@ | |
<div class="header-container"> | ||
<div class="container demo-container"> | ||
<div class="info"> | ||
<h1>SimpleLightbox <sup>v2.4.1</sup></h1> | ||
<h1>SimpleLightbox <sup>v2.5.0</sup></h1> | ||
<span class="subline">Touch-friendly image lightbox</span> | ||
<nav> | ||
<a class="btn donate" target="_blank" href="https://www.paypal.me/anrinas">Donate</a> | ||
|
@@ -26,11 +26,11 @@ <h1>SimpleLightbox <sup>v2.4.1</sup></h1> | |
</nav> | ||
</div> | ||
<div class="small-demo"> | ||
<a href="img/full/01.jpg"><img src="img/thumb/01.jpg" alt="" /></a> | ||
<a href="img/full/01.jpg"><img src="img/thumb/01.jpg" title="Drone Photography" alt="" /></a> | ||
<a rel="rel2" href="img/full/02.jpg"><img src="img/thumb/02.jpg" alt="" /></a> | ||
<a rel="rel3" href="img/full/03.jpg"><img src="img/thumb/03.jpg" alt="" /></a> | ||
<a rel="rel2" href="img/full/04.jpg"><img src="img/thumb/04.jpg" alt="" /></a> | ||
<a rel="rel2" href="img/full/05.jpg"><img src="img/thumb/05.jpg" alt="" /></a> | ||
<a rel="rel2" href="img/full/05.jpg"><img src="img/thumb/05.jpg" alt="" title="Lego Heads" /></a> | ||
<a rel="rel1" href="img/full/06.jpg"><img src="img/thumb/06.jpg" alt="" /></a> | ||
<div class="clearing"></div> | ||
<div class="caption"> | ||
|
@@ -389,6 +389,12 @@ <h2>JavaScript Options</h2> | |
<td>string</td> | ||
<td>elements with this class are fixed and get the right padding when lightbox opens</td> | ||
</tr> | ||
<tr> | ||
<td>fadeSpeed</td> | ||
<td>300</td> | ||
<td>int</td> | ||
<td>the duration for fading in and out in milliseconds. Used for caption fadein/out too. If smaller than 100 it should be used with animationSlide:false</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</div> | ||
|
@@ -599,6 +605,7 @@ <h2>Customization</h2> | |
<h2>Changelog</h2> | ||
</div> | ||
<div class="col-right"> | ||
<strong>2.5.0</strong> - Added new option fadeSpeed. This will fix #147.<br /> | ||
<strong>2.4.1</strong> - Added new simple-lightbox.legacy.js with IE 11 Support<br /> | ||
<strong>2.4.0</strong> - Added new option for fixed elements class #195<br /> | ||
<strong>2.3.0</strong> - Merged Feature for ESM Modules. Thanks to Serafin Lichtenhahn #173<br /> | ||
|
@@ -704,7 +711,7 @@ <h2>Author/<br />Contributors</h2> | |
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" | ||
crossorigin="anonymous"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/michalsnik/[email protected]/dist/aos.js"></script> | ||
<script src="../dist/simple-lightbox.min.js?v2.4.1"></script> | ||
<script src="../dist/simple-lightbox.min.js?v2.5.0"></script> | ||
<script> | ||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | ||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | ||
|
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
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.
5de0e87
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Much appreciated! Thanks for the hard work!
5de0e87
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you are welcome