Compare commits
No commits in common. "master" and "1.0.0" have entirely different histories.
13
.gitlab-ci.yml
Normal file
@ -0,0 +1,13 @@
|
||||
# Move / rename the content files into the 'public' folder for GitLab Pages
|
||||
# Artifacts contents of 'public' for Pages
|
||||
# Deploy pages publicly in GitLab
|
||||
|
||||
pages:
|
||||
stage: deploy
|
||||
script:
|
||||
- mv assets public/assets
|
||||
- mv main.css public/main.css
|
||||
- mv lightbox-demo.html public/index.html
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
15
README.md
@ -10,23 +10,22 @@ This work allowed me to exercise on interface design and graphical design, inspi
|
||||
|
||||
* [Interactive showcase](https://khosmon.gitlab.io/Lightbox-Remastered/)
|
||||
On Firefox, you can use the Adaptative View (`Ctrl / Cmd + Shift + M`) to resize it freely.
|
||||
* [Before/After comparison](https://khosmon.gitlab.io/Lightbox-Remastered/juxtaposejs/)
|
||||
* [Before/After comparison](https://khosmon.gitlab.io/Lightbox-Remastered/sliderjs/)
|
||||
|
||||
|
||||
## Gallery
|
||||
|
||||

|
||||

|
||||
|
||||

|
||||

|
||||
|
||||

|
||||

|
||||
|
||||

|
||||

|
||||
|
||||

|
||||
|
||||

|
||||

|
||||
|
||||

|
||||
|
||||
## Credits
|
||||
|
||||
|
BIN
public/readme_assets/Lightbox 1.png
Normal file
After Width: | Height: | Size: 398 KiB |
BIN
public/readme_assets/Lightbox 2.png
Normal file
After Width: | Height: | Size: 233 KiB |
BIN
public/readme_assets/Lightbox 3.png
Normal file
After Width: | Height: | Size: 193 KiB |
BIN
public/readme_assets/Lightbox 4.png
Normal file
After Width: | Height: | Size: 154 KiB |
BIN
public/readme_assets/Lightbox 5.png
Normal file
After Width: | Height: | Size: 143 KiB |
BIN
public/readme_assets/Lightbox 6.png
Normal file
After Width: | Height: | Size: 80 KiB |
BIN
public/sliderjs/actual-screenshot1.jpg
Normal file
After Width: | Height: | Size: 76 KiB |
21
public/sliderjs/index.html
Normal file
@ -0,0 +1,21 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document</title>
|
||||
<link rel="stylesheet" href="remus.min.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="juxtapose" data-animate="true">
|
||||
<img src="./actual-screenshot1.jpg" alt="" data-label="2019">
|
||||
<img src="./poc-screenshot1.jpg" alt="" data-label="poc">
|
||||
</div>
|
||||
<script src="https://cdn.knightlab.com/libs/juxtapose/latest/js/juxtapose.min.js"></script>
|
||||
<link rel="stylesheet" href="https://cdn.knightlab.com/libs/juxtapose/latest/css/juxtapose.css">
|
||||
</body>
|
||||
|
||||
</html>
|
BIN
public/sliderjs/poc-screenshot1.jpg
Normal file
After Width: | Height: | Size: 129 KiB |