
Imweb Education Community
<div id="intro">
<div class="logo-container">
<img src="https://cdn.imweb.me/upload/S20230820b150b7849d699/13023180534e8.png" style="width: 80%; max-width: 300px;" class="fr-dii" alt="Logo" class="logointro">
<br>
<h6><strong><span class="txtintro" style="color: rgb(0, 0, 0, 0.4); font-size: 36px;">Imweb Education Community</span></strong></h6>
</div>
</div>
<style>
#intro {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background-color: #f8f8f8;
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
overflow: hidden;
}
.logo-container {
opacity: 0;
width: 80%;
transform: translateY(100%);
animation: logo-move 1s ease-in-out forwards, intro-fadeout 2s ease-in-out 1.5s forwards;
text-align: center;
}
@media (max-width:767px) {
.logo-container {
width: 300px !important;
}
.txtintro {
font-size: 16px !important;
}
}
@keyframes logo-move {
0% {
transform: translateY(100%);
opacity: 0;
}
50% {
transform: translateY(0);
opacity: 1;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
@keyframes intro-fadeout {
0% {
opacity: 1;
}
100% {
opacity: 0;
visibility: hidden;
}
}
</style>
<script>
document.addEventListener("DOMContentLoaded", () => {
setTimeout(() => {
document.getElementById("intro").style.display = "none";
}, 3500); // 3.5초 후 인트로 제거
});
</script>