-
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
Natelyt
committed
May 12, 2024
0 parents
commit 43af7e4
Showing
61 changed files
with
102 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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.
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.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
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,24 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Wibi Slideshow</title> | ||
<link rel="stylesheet" href="style.css"> | ||
<link rel="icon" href="./asset/icon.png"> | ||
</head> | ||
<body> | ||
<div id="control"> | ||
<button type="button" id="start" onclick="start()">Start!</button> | ||
<button type="button" id="info">Info</button> | ||
</div> | ||
<div id="info-container"> | ||
<p>Wibi Slideshow <span>By @phucthanhh</span></p> | ||
<p>made with: <span>Javascript</span></p> | ||
<p>picture: <span>Pinterest - Pixiv - @tth</span></p> | ||
<p>music: <span>Glisten - Hunter Milo</span></p> | ||
<p>ver: <span>2.0</span></p> | ||
</div> | ||
</body> | ||
<script src="script.js"></script> | ||
</html> |
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,14 @@ | ||
function start() { | ||
let startbtn = document.getElementById('start') | ||
let controlcon = document.getElementById('control') | ||
startbtn.style.background = 'white' | ||
startbtn.style.transition = '500ms' | ||
startbtn.style.color = 'black' | ||
controlcon.style.transform = 'translateX(-210px)' | ||
controlcon.style.transition = 'all 1000ms cubic-bezier(0.610, 0.025, 0.870, 0.620)' | ||
} | ||
|
||
document.getElementById('info').addEventListener("click", () => { | ||
var toggle = document.getElementById("info-container"); | ||
toggle.classList.toggle('on'); | ||
}) |
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,64 @@ | ||
/* rgb(59, 59, 59) */ | ||
|
||
|
||
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Sans:ital,wdth@0,75..100;1,75..100&display=swap'); | ||
|
||
* { | ||
font-family: "Ubuntu Sans", sans-serif; | ||
} | ||
|
||
body { | ||
background-color: black; | ||
overflow: hidden; | ||
} | ||
|
||
#control { | ||
position: absolute; | ||
bottom: 0; | ||
left: 0; | ||
margin: 0px 0px 5px 5px; | ||
} | ||
|
||
button { | ||
padding: 5px 0px; | ||
border: 1px solid rgb(59, 59, 59); | ||
background: transparent; | ||
color: white; | ||
} | ||
|
||
button:active { | ||
border: white 1px solid; | ||
} | ||
|
||
#start { | ||
width: 150px; | ||
} | ||
|
||
#info { | ||
width: 50px; | ||
} | ||
|
||
#info-container { | ||
color: white; | ||
position: absolute; | ||
border: 1px solid rgb(59, 59, 59); | ||
padding: 5px 10px; | ||
margin-left: 5px; | ||
bottom: 40px; | ||
left: -250px; | ||
transition: all 1000ms cubic-bezier(0.000, 1.620, 0.715, 0.995); | ||
span { | ||
font-size: 80%; | ||
color: rgb(204, 204, 204); | ||
} | ||
p { | ||
padding: 0; | ||
margin: 3px 0px; | ||
} | ||
|
||
} | ||
|
||
.on{ | ||
position: absolute; | ||
transform: translateX(250px); | ||
} |