"April 2023: HAPPY BIRTHDAY"
Bootstrap 4.1.1 Snippet by @Aperlius_73

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Happy Birthday Guys </title>
<link href="https://fonts.googleapis.com/css?family=Work+Sans:300,400" rel="stylesheet" />
<link rel="shortcut icon" type="image/png" href="img/favicon.png" />
<link rel="stylesheet" href="style/style.css" />
</head>
<body>
<audio class="song" loop autoplay>
<source src="https://www.mediafire.com/file/5o6zqqif4o3s4wn/Hbd2.mp3/file"> type="audip/mpe3>
</source>
Your browser isn't invited for super fun audio time.
</audio>
<div class="container">
<div class="one">
<h1 class="one">
HAPPY BIRTHDAY GUYS
<span id="name"></span>
</h1>
<p class="two" id="greetingText">SELAMAT MENYAKSIKAN SETIAP SLIDENYA</p>
<p class="two" id="greetingText">Yang pernah lihat ini, tolong diem y </p>
<p class="two" id="greetingText">Karena yang buat, sedang tidak mau ribet</p>
</div>
<div class="three">
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
html {
box-sizing: border-box;
}
body {
font-family: "Work Sans", sans-serif;
margin: 0;
}
.container {
height: 100vh;
margin: 0 auto;
overflow: hidden;
position: relative;
text-align: center;
visibility: hidden;
width: 100vh;
}
.container div.six {
top: 10vh;
z-index: 1;
}
.container div.seven,
.container div.eight {
height: 100vh;
position: fixed;
top: 0;
width: 100vw;
}
.container > div {
left: 0;
position: absolute;
right: 0;
top: 20vh;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Run when the webpage is loaded
window.addEventListener('load', () => {
Swal.fire({
title: 'Do you want to play music in background??',
// text: "You won't be able to revert this!",
icon: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'YES!',
cancelButtonText: 'NO!',
}).then((result) => {
if (result.isConfirmed) {
document.querySelector('.song').play();
resolveFetch().then(animationTimeline());
} else {
resolveFetch().then(animationTimeline());
}
})
})
// Animation Timeline
const animationTimeline = () => {
// Spit chars that needs to be animated individually
const textBoxChars = document.getElementsByClassName("hbd-chatbox")[0];
const hbd = document.getElementsByClassName("wish-hbd")[0];
textBoxChars.innerHTML = `<span>${textBoxChars.innerHTML
.split("")
.join("</span><span>")}</span`;
hbd.innerHTML = `<span>${hbd.innerHTML
.split("")
.join("</span><span>")}</span`;
const ideaTextTrans = {
opacity: 0,
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: