Skip to content

Commit 09fa77c

Browse files
authored
Added new files
0 parents  commit 09fa77c

24 files changed

+1227
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# breadomaticc.github.io
2+
3+
24/12/2021 updated my github page,
4+
5+
6+
original : https://pndaboi.is-a.dev/

assets/audio/back.mp3

3.05 MB
Binary file not shown.

assets/css/cte.css

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
/*
2+
Click to enter CSS file
3+
*/
4+
5+
.unclicked {
6+
filter: blur(4px);
7+
/* z-index: 100; */
8+
}
9+
10+
.overlay {
11+
12+
width: 100%;
13+
height: 100vh;
14+
15+
opacity: 0;
16+
}
17+
18+
.overlaytext {
19+
text-align: center;
20+
21+
position: absolute;
22+
z-index: 2;
23+
24+
background-color: black;
25+
color: white;
26+
27+
left: 50%;
28+
top: 50%;
29+
30+
transform: translate(-50%, -50%);
31+
}
32+
33+
.click {
34+
animation: clickedAnim 1s;
35+
}
36+
37+
.clicked {
38+
filter: 0;
39+
}
40+
41+
.fadeIn {
42+
animation: fadeInAnim 1s;
43+
}
44+
45+
.fadeOut {
46+
animation: fadeOutAnim 1s;
47+
}
48+
49+
@keyframes fadeInAnim
50+
{
51+
from {
52+
opacity: 0;
53+
}
54+
to {
55+
opacity: 1;
56+
}
57+
}
58+
59+
@keyframes fadeOutAnim
60+
{
61+
from {
62+
opacity: 1;
63+
}
64+
to {
65+
opacity: 0;
66+
}
67+
}
68+
69+
@keyframes clickedAnim
70+
{
71+
from {
72+
filter: blur(4px);
73+
-webkit-filter: blur(4px);
74+
}
75+
to {
76+
filter: blur(0px);
77+
-webkit-filter: blur(0px);
78+
}
79+
}

assets/css/main.css

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap');
2+
3+
pre, span, div, p, h1 {
4+
background-color: transparent;
5+
}
6+
7+
* {
8+
text-align: center;
9+
10+
margin: 0px;
11+
padding: 0px;
12+
overflow: hidden;
13+
14+
background-color: black;
15+
color: white;
16+
17+
font-family: 'Source Code Pro', monospace;
18+
}
19+
20+
pre {
21+
/* background: white; */
22+
}
23+
24+
.inline-container {
25+
position: absolute;
26+
bottom: 15%;
27+
width: 470px;
28+
/* width: 600px; */
29+
}
30+
31+
.emoji {
32+
height: 20px;
33+
bottom:50%;
34+
transform:translateY(30%);
35+
}
36+
37+
#marquee {
38+
display: inline-block;
39+
width: 450px;
40+
}
41+
42+
.title {
43+
font-size: 25px;
44+
}
45+
46+
.center {
47+
position: absolute;
48+
49+
left: 50%;
50+
top: 50%;
51+
52+
transform: translate(-50%, -50%);
53+
}
54+
55+
.topbar {
56+
top: 5%;
57+
}
58+
59+
.centerbar {
60+
61+
}
62+
63+
.bottombar {
64+
top: auto;
65+
bottom: 5%;
66+
}
67+

assets/images/29154652_170x100.gif

95.5 KB
Loading

assets/images/850207743586992148.gif

253 KB
Loading

assets/images/cat-rave-party.gif

159 KB
Loading
980 KB
Loading

assets/images/pick.png

10.5 KB
Loading

assets/images/rave-party.gif

2.32 MB
Loading

assets/images/seperator.png

610 KB
Loading

assets/js/cte.js

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
/*
2+
Click to enter JavaScript
3+
*/
4+
5+
var CTE = {};
6+
7+
// The call back for when its finished
8+
CTE.callback = null;
9+
10+
// The actual particles.js canvas it uses
11+
CTE.container = document.getElementById("content-container");
12+
CTE.container.style.opacity = 0;
13+
CTE.canvas = document.getElementsByTagName("canvas")[0];
14+
CTE.canvas.classList.add("unclicked");
15+
16+
// Make the elements
17+
CTE.text = document.createElement("div");
18+
CTE.text.className = "overlaytext";
19+
CTE.text.id = "CTEText";
20+
CTE.text.innerText = "Click Me!";
21+
22+
// Add the overlay to the actual site
23+
document.body.insertBefore(CTE.text, document.body.children[0]);
24+
// document.body.insertBefore(CTE.div, document.body.children[0]);
25+
26+
// The function that will be execute upon click of the div or text
27+
CTE.clicked = () => {
28+
if (CTE.canvas.className.includes("click") && !CTE.canvas.className.includes("unclicked"))
29+
return;
30+
31+
// Fade off the blur
32+
CTE.canvas.classList.remove("unclicked");
33+
CTE.canvas.classList.add("click");
34+
CTE.text.classList.add("fadeOut");
35+
36+
// Fixing styling after
37+
setTimeout(() => {
38+
CTE.canvas.classList.add("clicked");
39+
CTE.text.remove();
40+
CTE.container.classList.add("fadeIn");
41+
42+
// Fade in styling fix
43+
setTimeout(() => {
44+
CTE.container.style.opacity = 1;
45+
46+
if (CTE.callback && typeof(CTE.callback) == "function")
47+
CTE.callback();
48+
}, 1000);
49+
}, 1000);
50+
}
51+
52+
// Events
53+
CTE.canvas.onclick = CTE.clicked;
54+
// CTE.text.onclick = CTE.clicked;

assets/js/jquery.marquee.min.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/jquery.min.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/particles.js/app.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/particles.js/particles.min.js

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)