summaryrefslogtreecommitdiff
path: root/Data/background
diff options
context:
space:
mode:
authornirav <nirav@airmail.cc>2020-12-12 07:18:36 +0000
committernirav <nirav@airmail.cc>2020-12-12 07:18:36 +0000
commit115f77bda0246a00f6e17469685c67746bdbd29d (patch)
tree4bbea1e59109bb1d1fddc71736f89289bab03073 /Data/background
download01-115f77bda0246a00f6e17469685c67746bdbd29d.tar.gz
01-115f77bda0246a00f6e17469685c67746bdbd29d.zip
Initial commitHEADmaster
Diffstat (limited to 'Data/background')
-rwxr-xr-xData/background/0.pngbin0 -> 21444 bytes
-rwxr-xr-xData/background/1.pngbin0 -> 21283 bytes
-rwxr-xr-xData/background/1.psdbin0 -> 44608 bytes
-rwxr-xr-xData/background/background.html82
-rwxr-xr-xData/background/debug.log5
5 files changed, 87 insertions, 0 deletions
diff --git a/Data/background/0.png b/Data/background/0.png
new file mode 100755
index 0000000..7e2585b
--- /dev/null
+++ b/Data/background/0.png
Binary files differ
diff --git a/Data/background/1.png b/Data/background/1.png
new file mode 100755
index 0000000..286c636
--- /dev/null
+++ b/Data/background/1.png
Binary files differ
diff --git a/Data/background/1.psd b/Data/background/1.psd
new file mode 100755
index 0000000..bf909c0
--- /dev/null
+++ b/Data/background/1.psd
Binary files differ
diff --git a/Data/background/background.html b/Data/background/background.html
new file mode 100755
index 0000000..0ca84b6
--- /dev/null
+++ b/Data/background/background.html
@@ -0,0 +1,82 @@
+<!DOCTYPE html>
+
+<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
+<head>
+ <meta charset="utf-8" />
+ <title></title>
+ <style>
+ /*basic reset*/
+ * {
+ margin: 0;
+ padding: 0;
+ }
+ /*adding a black bg to the body to make things clearer*/
+ body {
+ background: black;
+ }
+
+ canvas {
+ display: block;
+ }
+ </style>
+
+</head>
+<body>
+ <canvas id="c"></canvas>
+</body>
+<script>
+ var c = document.getElementById("c");
+ var ctx = c.getContext("2d");
+
+ //making the canvas full screen
+ c.height = window.innerHeight;
+ c.width = window.innerWidth;
+
+ //chinese characters - taken from the unicode charset
+ var chinese = "1 1 0 1 0 1 0 1 1 1 0 1 1 1 1 1 1 0 0 0 10 1 0 10 0 10 0 0 1";
+ //converting the string into an array of single characters
+ chinese = chinese.split("");
+
+ var font_size = 10;
+ var columns = c.width / font_size; //number of columns for the rain
+ //an array of drops - one per column
+ var drops = [];
+ //x below is the x coordinate
+ //1 = y co-ordinate of the drop(same for every drop initially)
+ for (var x = 0; x < columns; x++)
+ drops[x] = 1;
+
+ //drawing the characters
+ function draw() {
+ //Black BG for the canvas
+ //translucent BG to show trail
+ ctx.fillStyle = "rgba(0, 0, 0, 0.05)";
+ ctx.fillRect(0, 0, c.width, c.height);
+
+ ctx.fillStyle = "#0F0"; //green text
+ ctx.font = font_size + "px arial";
+ //looping over drops
+ for (var i = 0; i < drops.length; i++) {
+ //a random chinese character to print
+ var text = chinese[Math.floor(Math.random() * chinese.length)];
+ //x = i*font_size, y = value of drops[i]*font_size
+ ctx.fillText(text, i * font_size, drops[i] * font_size);
+
+ //sending the drop back to the top randomly after it has crossed the screen
+ //adding a randomness to the reset to make the drops scattered on the Y axis
+ if (drops[i] * font_size > c.height && Math.random() > 0.2)
+ drops[i] = 0;
+
+ //incrementing Y coordinate
+ drops[i]++;
+ }
+ }
+
+ setInterval(draw, 33);
+
+
+
+
+</script>
+
+</html> \ No newline at end of file
diff --git a/Data/background/debug.log b/Data/background/debug.log
new file mode 100755
index 0000000..3a5156b
--- /dev/null
+++ b/Data/background/debug.log
@@ -0,0 +1,5 @@
+[0315/171724.562:ERROR:exception_handler_server.cc(524)] ConnectNamedPipe: The pipe is being closed. (0xE8)
+[0315/171728.759:ERROR:exception_handler_server.cc(524)] ConnectNamedPipe: The pipe is being closed. (0xE8)
+[0409/204242.900:ERROR:process_info.cc(625)] range at 0x94c1353400000000, size 0x1f2 fully unreadable
+[0409/204242.900:ERROR:process_info.cc(625)] range at 0x94c1359400000000, size 0x1f2 fully unreadable
+[0409/204242.900:ERROR:process_info.cc(625)] range at 0x0, size 0x1f2 fully unreadable