From e3298dbeaae79bb1d384fa8cd78a67be89819720 Mon Sep 17 00:00:00 2001 From: Minteck Date: Tue, 24 Aug 2021 15:37:01 +0200 Subject: Initial commit --- static/01-simple-new.png | Bin 0 -> 37003 bytes static/01-simple.png | Bin 0 -> 14711 bytes static/02-online.png | Bin 0 -> 26383 bytes static/averi.png | Bin 0 -> 145647 bytes static/background.jpg | Bin 0 -> 177029 bytes static/banner.gif | Bin 0 -> 96319 bytes static/blurred.jpg | Bin 0 -> 62128 bytes static/broken.jpg | Bin 0 -> 98422 bytes static/constellation.js | 4 + static/eap.png | Bin 0 -> 12609 bytes static/favicon.png | Bin 0 -> 13296 bytes static/laptop.svg | 9802 ++++++++++++++++++++++++++++++++++++++++++++++ static/laptop.webp | Bin 0 -> 265948 bytes static/loader.svg | 207 + static/logo.png | Bin 0 -> 10682 bytes static/mods.png | Bin 0 -> 11113 bytes static/screenshot.png | Bin 0 -> 524708 bytes static/server.png | Bin 0 -> 25011 bytes 18 files changed, 10013 insertions(+) create mode 100644 static/01-simple-new.png create mode 100644 static/01-simple.png create mode 100644 static/02-online.png create mode 100644 static/averi.png create mode 100644 static/background.jpg create mode 100644 static/banner.gif create mode 100644 static/blurred.jpg create mode 100644 static/broken.jpg create mode 100644 static/constellation.js create mode 100644 static/eap.png create mode 100644 static/favicon.png create mode 100644 static/laptop.svg create mode 100644 static/laptop.webp create mode 100644 static/loader.svg create mode 100644 static/logo.png create mode 100644 static/mods.png create mode 100644 static/screenshot.png create mode 100644 static/server.png (limited to 'static') diff --git a/static/01-simple-new.png b/static/01-simple-new.png new file mode 100644 index 0000000..a29ac24 Binary files /dev/null and b/static/01-simple-new.png differ diff --git a/static/01-simple.png b/static/01-simple.png new file mode 100644 index 0000000..2e2dfa4 Binary files /dev/null and b/static/01-simple.png differ diff --git a/static/02-online.png b/static/02-online.png new file mode 100644 index 0000000..17ca0c3 Binary files /dev/null and b/static/02-online.png differ diff --git a/static/averi.png b/static/averi.png new file mode 100644 index 0000000..68b51d4 Binary files /dev/null and b/static/averi.png differ diff --git a/static/background.jpg b/static/background.jpg new file mode 100644 index 0000000..60753a4 Binary files /dev/null and b/static/background.jpg differ diff --git a/static/banner.gif b/static/banner.gif new file mode 100644 index 0000000..e65d463 Binary files /dev/null and b/static/banner.gif differ diff --git a/static/blurred.jpg b/static/blurred.jpg new file mode 100644 index 0000000..790cc63 Binary files /dev/null and b/static/blurred.jpg differ diff --git a/static/broken.jpg b/static/broken.jpg new file mode 100644 index 0000000..b2a24c9 Binary files /dev/null and b/static/broken.jpg differ diff --git a/static/constellation.js b/static/constellation.js new file mode 100644 index 0000000..77cf25c --- /dev/null +++ b/static/constellation.js @@ -0,0 +1,4 @@ +// particle.min.js hosted on GitHub +// Scroll down for initialisation code + +!function(a){var b="object"==typeof self&&self.self===self&&self||"object"==typeof global&&global.global===global&&global;"function"==typeof define&&define.amd?define(["exports"],function(c){b.ParticleNetwork=a(b,c)}):"object"==typeof module&&module.exports?module.exports=a(b,{}):b.ParticleNetwork=a(b,{})}(function(a,b){var c=function(a){this.canvas=a.canvas,this.g=a.g,this.particleColor=a.options.particleColor,this.x=Math.random()*this.canvas.width,this.y=Math.random()*this.canvas.height,this.velocity={x:(Math.random()-.5)*a.options.velocity,y:(Math.random()-.5)*a.options.velocity}};return c.prototype.update=function(){(this.x>this.canvas.width+20||this.x<-20)&&(this.velocity.x=-this.velocity.x),(this.y>this.canvas.height+20||this.y<-20)&&(this.velocity.y=-this.velocity.y),this.x+=this.velocity.x,this.y+=this.velocity.y},c.prototype.h=function(){this.g.beginPath(),this.g.fillStyle=this.particleColor,this.g.globalAlpha=.7,this.g.arc(this.x,this.y,1.5,0,2*Math.PI),this.g.fill()},b=function(a,b){this.i=a,this.i.size={width:this.i.offsetWidth,height:this.i.offsetHeight},b=void 0!==b?b:{},this.options={particleColor:void 0!==b.particleColor?b.particleColor:"#fff",background:void 0!==b.background?b.background:"#1a252f",interactive:void 0!==b.interactive?b.interactive:!0,velocity:this.setVelocity(b.speed),density:this.j(b.density)},this.init()},b.prototype.init=function(){if(this.k=document.createElement("div"),this.i.appendChild(this.k),this.l(this.k,{position:"absolute",top:0,left:0,bottom:0,right:0,"z-index":1}),/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(this.options.background))this.l(this.k,{background:this.options.background});else{if(!/\.(gif|jpg|jpeg|tiff|png)$/i.test(this.options.background))return console.error("Please specify a valid background image or hexadecimal color"),!1;this.l(this.k,{background:'url("'+this.options.background+'") no-repeat center',"background-size":"cover"})}if(!/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(this.options.particleColor))return console.error("Please specify a valid particleColor hexadecimal color"),!1;this.canvas=document.createElement("canvas"),this.i.appendChild(this.canvas),this.g=this.canvas.getContext("2d"),this.canvas.width=this.i.size.width,this.canvas.height=this.i.size.height,this.l(this.i,{position:"relative"}),this.l(this.canvas,{"z-index":"20",position:"relative"}),window.addEventListener("resize",function(){return this.i.offsetWidth===this.i.size.width&&this.i.offsetHeight===this.i.size.height?!1:(this.canvas.width=this.i.size.width=this.i.offsetWidth,this.canvas.height=this.i.size.height=this.i.offsetHeight,clearTimeout(this.m),void(this.m=setTimeout(function(){this.o=[];for(var a=0;aa;b--){var c=Math.sqrt(Math.pow(this.o[a].x-this.o[b].x,2)+Math.pow(this.o[a].y-this.o[b].y,2));c>120||(this.g.beginPath(),this.g.strokeStyle=this.options.particleColor,this.g.globalAlpha=(120-c)/120,this.g.lineWidth=.7,this.g.moveTo(this.o[a].x,this.o[a].y),this.g.lineTo(this.o[b].x,this.o[b].y),this.g.stroke())}}0!==this.options.velocity&&requestAnimationFrame(this.update.bind(this))},b.prototype.setVelocity=function(a){return"fast"===a?1:"slow"===a?.33:"none"===a?0:.66},b.prototype.j=function(a){return"high"===a?5e3:"low"===a?2e4:isNaN(parseInt(a,10))?1e4:a},b.prototype.l=function(a,b){for(var c in b)a.style[c]=b[c]},b}); \ No newline at end of file diff --git a/static/eap.png b/static/eap.png new file mode 100644 index 0000000..af29ee6 Binary files /dev/null and b/static/eap.png differ diff --git a/static/favicon.png b/static/favicon.png new file mode 100644 index 0000000..017e46d Binary files /dev/null and b/static/favicon.png differ diff --git a/static/laptop.svg b/static/laptop.svg new file mode 100644 index 0000000..91ee5ab --- /dev/null +++ b/static/laptop.svg @@ -0,0 +1,9802 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/laptop.webp b/static/laptop.webp new file mode 100644 index 0000000..24d667d Binary files /dev/null and b/static/laptop.webp differ diff --git a/static/loader.svg b/static/loader.svg new file mode 100644 index 0000000..7e0e816 --- /dev/null +++ b/static/loader.svg @@ -0,0 +1,207 @@ +image/svg+xml diff --git a/static/logo.png b/static/logo.png new file mode 100644 index 0000000..b2edd9b Binary files /dev/null and b/static/logo.png differ diff --git a/static/mods.png b/static/mods.png new file mode 100644 index 0000000..4aadc92 Binary files /dev/null and b/static/mods.png differ diff --git a/static/screenshot.png b/static/screenshot.png new file mode 100644 index 0000000..1384f40 Binary files /dev/null and b/static/screenshot.png differ diff --git a/static/server.png b/static/server.png new file mode 100644 index 0000000..d1479d3 Binary files /dev/null and b/static/server.png differ -- cgit