aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--static/boo.mp3bin0 -> 4385426 bytes
-rw-r--r--static/for-maeve.mp3bin0 -> 8077913 bytes
-rw-r--r--static/funny.js17
-rw-r--r--static/index.html3
-rw-r--r--static/neOwOfetch/index.html4
-rw-r--r--static/styles.css3
6 files changed, 24 insertions, 3 deletions
diff --git a/static/boo.mp3 b/static/boo.mp3
new file mode 100644
index 0000000..771c4ff
--- /dev/null
+++ b/static/boo.mp3
Binary files differ
diff --git a/static/for-maeve.mp3 b/static/for-maeve.mp3
new file mode 100644
index 0000000..9858194
--- /dev/null
+++ b/static/for-maeve.mp3
Binary files differ
diff --git a/static/funny.js b/static/funny.js
index 42343a5..0e703f7 100644
--- a/static/funny.js
+++ b/static/funny.js
@@ -1 +1,16 @@
-//nothing :) **FOR NOW** \ No newline at end of file
+bool = false
+var audio
+if (new Date().getMonth() === 9){
+ console.log("boo")
+ audio = new Audio('boo.mp3')
+} else {
+ audio = new Audio('for-maeve.mp3')
+}
+function no() {
+ bool = !bool
+ if(bool){
+ audio.play()
+ } else {
+ audio.pause()
+ }
+ }
diff --git a/static/index.html b/static/index.html
index 9a017bd..b082407 100644
--- a/static/index.html
+++ b/static/index.html
@@ -22,6 +22,9 @@
<a class="active" href="#home">Home</a>
<a href="#ticd">Things i <u>cant</u> do </a>
<a href="#contact">Contact me / About me</a>
+ <a onclick="no()">do you want to bless your ears?
+ <a href="https://exhq.gay/neOwOfetch">try neOwOfetch :)</a>
+ </a>
</div>
<div class="downnav">
diff --git a/static/neOwOfetch/index.html b/static/neOwOfetch/index.html
index 5b2f1a1..53554d8 100644
--- a/static/neOwOfetch/index.html
+++ b/static/neOwOfetch/index.html
@@ -1,7 +1,9 @@
<!DOCTYPE html>
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="style.css">
-
+<div class="popup" onclick="myFunction()">Click me!
+ <span class="popuptext" id="myPopup">Popup text...</span>
+</div>
<meta content="NeOwOfetch" property="og:title" />
<meta content="(its not that great)" property="og:description" />
<meta content="https://exhq.gay/neowofetch" property="og:url" />
diff --git a/static/styles.css b/static/styles.css
index a79fa92..08c2fd2 100644
--- a/static/styles.css
+++ b/static/styles.css
@@ -79,6 +79,7 @@ html, body{
}
.topnav a{
+ user-select: none;
float: left;
color: #f2f2f2;
text-align: center;
@@ -299,4 +300,4 @@ html{
}
.none{
display: none;
-}
+} \ No newline at end of file