Skip to content
This repository was archived by the owner on Feb 17, 2023. It is now read-only.

Commit 2027a3d

Browse files
committedFeb 15, 2014
organized folder structure
1 parent 1fe4829 commit 2027a3d

29 files changed

+47
-95
lines changed
 

‎css/demo.css

-33
This file was deleted.

‎css/demo.scss

-37
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

‎index.html ‎demo/index.html

+43-9
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,51 @@
33
<head>
44
<meta charset="utf-8">
55
<title>jsOnlyLightbox</title>
6-
<meta name="keywords" content="">
7-
<meta name="description" content="Felix Hagspiel is a Webdeveloper from Germany who studied computer science with a major focus on media at the Hochule der Medien in Stuttgart.">
6+
<meta name="keywords" content="lightbox showbox picture box javascript js only">
7+
<meta name="description" content="Responsive Lightbox written in plain JavaScript. No jQuery needed, fully responsive, customizable, lightweight, IE8+ supported.">
88
<meta name="author" content="Felix Hagspiel">
99
<meta name="viewport" content="width=device-width,initial-scale=1.0">
1010
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css'>
11-
<link rel="stylesheet" href="css/lightbox.css">
11+
<link rel="stylesheet" href="css/lightbox.min.css">
1212
<link rel="stylesheet" href="css/demo.css">
13-
<!--[if lt IE 9]>
14-
<script src="js/html5shiv.min.js"></script>
15-
<script src="js/respond.min.js"></script>
16-
<![endif]-->
13+
<style>
14+
body {
15+
font-family: 'Open Sans', sans-serif;
16+
font-weight: light;
17+
color: #6c7176;
18+
}
19+
a {
20+
text-decoration: none;
21+
}
22+
.section {
23+
max-width: 50em;
24+
margin: auto;
25+
text-align: center;
26+
}
27+
.u-list {
28+
list-style-type: none;
29+
margin: 0;
30+
padding: 0;
31+
li {
32+
margin: 0.6em 0;
33+
}
34+
}
35+
.btn {
36+
background-color: #547C85;
37+
color: #fff;
38+
padding: .15em .4em;
39+
display: inline-block;
40+
border-radius: 4px;
41+
-webkit-transition: all 0.3s ease-in-out;
42+
-moz-transition: all 0.3s ease-in-out;
43+
-o-transition: all 0.3s ease-in-out;
44+
-ms-transition: all 0.3s ease-in-out;
45+
transition: all 0.3s ease-in-out;
46+
&:hover {
47+
color: #F1C15C;
48+
}
49+
}
50+
</style>
1751
</head>
1852
<body id="body">
1953
<div class="section">
@@ -42,10 +76,10 @@ <h2>Using smallsized pictures for thumbnails and bigsized pictures for lightbox-
4276
<img class="jslghtbx-thmb" src="img/lightbox/4-small.jpg" alt="" data-jslghtbx="img/lightbox/4-big.jpg">
4377
</div>
4478

45-
<script src="js/lightbox.js" type="text/javascript"></script>
79+
<script src="js/lightbox.min.js" type="text/javascript"></script>
4680
<script>
4781
var lightbox = new Lightbox();
48-
lightbox.load({hideCloseBtn:true});
82+
lightbox.load();
4983
</script>
5084
</body>
5185
</html>
File renamed without changes.
File renamed without changes.

‎dev/css/lightbox.min.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

‎dev/img/lightbox/1.jpg

231 KB
Loading

‎dev/img/lightbox/2.jpg

475 KB
Loading

‎dev/img/lightbox/3-big.jpg

115 KB
Loading

‎dev/img/lightbox/3-small.jpg

9.56 KB
Loading

‎dev/img/lightbox/4-big.jpg

111 KB
Loading

‎dev/img/lightbox/4-small.jpg

11.8 KB
Loading

‎dev/img/trans-bck.png

935 Bytes
Loading

‎js/lightbox.js ‎dev/js/lightbox.js

File renamed without changes.

‎dev/js/lightbox.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎js/html5shiv.min.js

-11
This file was deleted.

‎js/respond.min.js

-5
This file was deleted.

‎src/css/lightbox.min.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/img/trans-bck.png

935 Bytes
Loading

‎src/js/lightbox.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
This repository has been archived.