feat(index): add appriopriate 'section buttons' for each about-section.
This commit is contained in:
parent
5f37d2a9b4
commit
f1d37a7141
1 changed files with 0 additions and 133 deletions
133
views/index.html
133
views/index.html
|
@ -1,133 +0,0 @@
|
||||||
<div id="main-content">
|
|
||||||
<div id="middle-box">
|
|
||||||
<p style="text-align: center;margin-bottom: 5px;">[ iwakura.rip ]</p>
|
|
||||||
<img id="main-img" style="display:block;margin-left:auto;margin-right:auto;" src="https://media1.tenor.com/m/OlHMWq46CtAAAAAC/serial-experiments-lain-lain.gif" width="332" height="235">
|
|
||||||
<div class="link-container" id="service-container">
|
|
||||||
<a id="anim-1" href="https://mail.iwakura.rip"> [ mail ] </a>
|
|
||||||
<a id="anim-2" href="https://git.iwakura.rip"> [ git ] </a>
|
|
||||||
<a id="anim-3" href="https://media.iwakura.rip"> [ media ] </a>
|
|
||||||
<a id="anim-4" href="https://blog.iwakura.rip"> [ blog ] </a>
|
|
||||||
</div>
|
|
||||||
<div class="link-container" id="main-container">
|
|
||||||
<a onclick="showAbout()"> [ about ] </a>
|
|
||||||
<a onclick="showContainer(serviceContainer)"> [ services ] </a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<br>
|
|
||||||
<div id="about-box" class="fadeIn">
|
|
||||||
<bu>About</bu>
|
|
||||||
<p>iwakura.rip is a collection of servers hosting mostly-private services for hexlocation & friends.</p>
|
|
||||||
<bu>Explanation</bu>
|
|
||||||
<p>Most of the gifs/art/names/ui design is inspired by/based on <a href="https://en.wikipedia.org/wiki/Serial_Experiments_Lain"><b>Serial Experiments Lain</b></a>, an anime series about Lain <u>Iwakura</u></p>
|
|
||||||
<bu>Disclaimer</bu>
|
|
||||||
<p>Serial Experiments Lain is the property of Triangle Studios. iwakura.rip is not affiliated with Triangle Studios.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<style>
|
|
||||||
@keyframes fadeIn {
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@keyframes fadeOut {
|
|
||||||
0% {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
100% {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
bu {
|
|
||||||
font-weight: bold;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
#about-box{
|
|
||||||
opacity:0;
|
|
||||||
display:none;
|
|
||||||
}
|
|
||||||
.fadeIn {
|
|
||||||
animation: fadeIn 0.5s forwards;
|
|
||||||
}
|
|
||||||
.fadeOut {
|
|
||||||
animation: fadeOut 0.5s forwards;
|
|
||||||
}
|
|
||||||
:root {
|
|
||||||
--term-color: #4AF626;
|
|
||||||
}
|
|
||||||
@font-face {
|
|
||||||
font-family: "Hack Nerd Font";
|
|
||||||
src: url(HNF-Reg.ttf);
|
|
||||||
}
|
|
||||||
a:hover {
|
|
||||||
color: black !important;
|
|
||||||
background-color: var(--term-color);
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
background-color: black;
|
|
||||||
}
|
|
||||||
#main-container {
|
|
||||||
animation-delay: 0.2s;
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
transition: 0.3s;
|
|
||||||
cursor: default;
|
|
||||||
}
|
|
||||||
.link-container {
|
|
||||||
display: flex;
|
|
||||||
margin-top: 5px;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
transition: 0.5s;
|
|
||||||
opacity:0;
|
|
||||||
}
|
|
||||||
#service-container {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
#main-content, a {
|
|
||||||
font-family: "Hack Nerd Font";
|
|
||||||
color: var(--term-color);
|
|
||||||
}
|
|
||||||
#main-content {
|
|
||||||
/*font-family: "Hack Nerd Font";
|
|
||||||
color: var(--term-color);*/
|
|
||||||
position:absolute;
|
|
||||||
top: 40%;
|
|
||||||
left: 50%;
|
|
||||||
transform: translate(-50%, -50%);
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<script>
|
|
||||||
let getId = (i) => document.getElementById(i);
|
|
||||||
let serviceContainer = getId('service-container');
|
|
||||||
let mainContainer = getId('main-container');
|
|
||||||
let aboutContainer = getId('about-container');
|
|
||||||
|
|
||||||
mainContainer.classList.add("fadeIn");
|
|
||||||
|
|
||||||
let containers = [serviceContainer, mainContainer, serviceContainer];
|
|
||||||
function showContainer(container){
|
|
||||||
for (let _container of containers) {
|
|
||||||
//_container.style.display = "none";
|
|
||||||
if (_container == container) continue
|
|
||||||
_container.classList.remove("fadeIn");
|
|
||||||
_container.classList.add("fadeOut");
|
|
||||||
_container.style.display = "none"
|
|
||||||
}
|
|
||||||
container.classList.add("fadeIn");
|
|
||||||
container.style.display = "flex";
|
|
||||||
}
|
|
||||||
let showAbout = () => document.getElementById('about-box').style.display = "block";
|
|
||||||
/*
|
|
||||||
var links = document.getElementById("link-container").getElementsByTagName("a");
|
|
||||||
let delay = 1;
|
|
||||||
for (var link of links) {
|
|
||||||
console.log(link)
|
|
||||||
link.style.animationDelay = `${delay}s`;
|
|
||||||
delay += 1;
|
|
||||||
link.style.animation = "fadeIn 0.3s";
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
var container = document.getElementById("link-container");
|
|
||||||
//container.style.animation = "fadeIn 0.3s";
|
|
||||||
</script>
|
|
Loading…
Reference in a new issue