diff --git a/assets/Keyboard Test.png b/assets/Keyboard Test.png new file mode 100644 index 0000000..5389e57 Binary files /dev/null and b/assets/Keyboard Test.png differ diff --git a/assets/Mouse Test.png b/assets/Mouse Test.png new file mode 100644 index 0000000..70b7b62 Binary files /dev/null and b/assets/Mouse Test.png differ diff --git a/assets/keyboard.png b/assets/keyboard.png deleted file mode 100644 index 1ee5664..0000000 Binary files a/assets/keyboard.png and /dev/null differ diff --git a/bio/index.html b/bio/index.html index 4096399..8a9d740 100644 --- a/bio/index.html +++ b/bio/index.html @@ -9,7 +9,7 @@ - + diff --git a/click/index.html b/click/index.html index b4f2fc0..277dba1 100644 --- a/click/index.html +++ b/click/index.html @@ -6,7 +6,7 @@ Click Test - + diff --git a/cool/index.html b/cool/index.html new file mode 100644 index 0000000..8dcd107 --- /dev/null +++ b/cool/index.html @@ -0,0 +1,13 @@ + + + + + + Cool + + + + + + + \ No newline at end of file diff --git a/cool/script.js b/cool/script.js new file mode 100644 index 0000000..75f4730 --- /dev/null +++ b/cool/script.js @@ -0,0 +1,207 @@ +var background_color = "#fafafa"; +var canvas = document.getElementById("canvas"); +var renderer = new THREE.WebGLRenderer( { canvas: canvas } ); +var scene = new THREE.Scene(); +scene.background = new THREE.Color(0xffffff); +var camera = new THREE.PerspectiveCamera( 75, window.innerWidth/window.innerHeight, 0.1, 1000 ); +var win_width = 0, win_height = 0; +function update_size() { + if (window.innerWidth != win_width || window.innerHeight != win_height) { + win_width = window.innerWidth; + win_height = window.innerHeight; + renderer.setPixelRatio(window.devicePixelRatio || 1); + renderer.setSize(win_width, win_height); + camera.aspect = win_width / win_height; + camera.updateProjectionMatrix(); + } +} +update_size(); + +var clock = new THREE.Clock(); +var delta_time = 1/60.0; +var elapsed_time = 0; + +var geometry = new THREE.Geometry(); +var radius = 10; +var depth_step = 10; +var num_rings = 100; +var num_segments = 24; + +var outer_h = Math.max($("#outer").height(), 10000) - 1200; +var content_h = Math.max($("#content").height(), 10000); +var content_h2 = $("#content").height() + 9200; + +var base_colors = []; +var colors = []; +var num_colors = num_rings * num_segments * 2; +for (var c = 0; c < num_colors; c++) { + base_colors[c] = new THREE.Color(Math.random(), Math.random(), Math.random()); + colors[c] = base_colors[c].clone(); +} + +function lerp(res, color1, color2, t) { + res.r = (1-t)*color1.r + t*color2.r; + res.g = (1-t)*color1.g + t*color2.g; + res.b = (1-t)*color1.b + t*color2.b; +} + +function update_colors(delta, progress) { + var bias = 1; + var bg = new THREE.Color(background_color); + var h1 = content_h - 6000; + var h2 = content_h + 400; + if (progress < h1) { + bias = 0; + } else if (progress < h2) { + bias = (progress - h1) / (h2 - h1); + } + //if (s > content_h) { + // if (s > content_h + 1000) { + // color = new THREE.Color(1, 1, 1); + // } else { + // var q = (s - content_h) / 1000; + // //color = new THREE.Color(r + (1-r) * q, g + (1-g) * q, b + (1-b) * q); + // color = new THREE.Color(); + // color.setHSL(0, 0.5, q * 0.6 + 0.4); + // } + //} else { + // var q = (content_h-s) / content_h; + // color = new THREE.Color(); + // color.setHSL(q, 0.5, 0.4); + //} + for (var c = 0; c < num_colors; c++) { + var hsl = base_colors[c].getHSL(); + var h = hsl.h; + h = (h + delta * (1+c/100)) % 1; + base_colors[c].setHSL(h, hsl.s, hsl.l); + lerp(colors[c], bg, base_colors[c], bias); + } +} +update_colors(0, 0); + +var verts = []; +var speeds = []; +var phases = []; +function init_verts() { + var x = 0, y = 0, z = 0; + var dz = -depth_step / num_segments; + for (var r = 0; r < num_rings; r++) { + for (var s = 0; s < num_segments; s++) { + var angle = Math.PI * 2 * (s / num_segments); + var x = Math.cos(angle) * radius; + var y = Math.sin(angle) * radius; + verts.push(new THREE.Vector3(x, y, z)); + speeds.push(Math.random()); + phases.push(Math.random()); + z += dz; + } + } +} +init_verts(); +function update_verts(t) { + var d = num_rings * 0.4; + var v = 0; + for (var r = 0; r < num_rings; r++) { + for (var s = 0; s < num_segments; s++) { + if (r > d) { + var p = 0.5 + 0.5 * Math.sin(t*speeds[v] + phases[v]) + var q = (r-d)/d * 1.1; + var rad = (1-p * q) * radius; + var angle = Math.PI * 2 * (s / num_segments); + var x = Math.cos(angle) * rad; + var y = Math.sin(angle) * rad; + var vert = verts[v]; + vert.x = x; + vert.y = y; + } + v++; + } + } +} +update_verts(0); + +function mkgeometry(geometry) { + var fi = 0; + var f = 0; + var vi = 0; + var v = 0; + var x = 0, y = 0, z = 0; + var dz = -depth_step / num_segments; + var c = 0; + for (var r = 0; r < num_rings; r++) { + for (var s = 0; s < num_segments; s++) { + var vert1 = verts[vi]; + var vert2 = vi - 1 >= 0 ? verts[vi - 1] : verts[0]; + var vert3 = vi - num_segments >= 0 ? verts[vi - num_segments] : verts[0]; + var vert4 = vi - num_segments - 1 >= 0 ? verts[vi - num_segments - 1] : verts[0]; + vi++; + + geometry.vertices[v++] = vert1; + geometry.vertices[v++] = vert2; + geometry.vertices[v++] = vert4; + geometry.faces[f++] = new THREE.Face3(fi, fi+1, fi+2, null, colors[c++]); + fi += 3; + geometry.vertices[v++] = vert1; + geometry.vertices[v++] = vert4; + geometry.vertices[v++] = vert3; + geometry.faces[f++] = new THREE.Face3(fi, fi+1, fi+2, null, colors[c++]); + fi += 3; + old_x = x; + old_y = y; + old_z = z; + z += dz; + } + } + geometry.verticesNeedUpdate = true; + geometry.colorsNeedUpdate = true; + geometry.elementsNeedUpdate = true; +} +mkgeometry(geometry); +var material = new THREE.MeshBasicMaterial({ vertexColors: THREE.VertexColors, color: background_color }); +material.depthFunc = THREE.AlwaysDepth; +var mesh = new THREE.Mesh(geometry, material); +scene.add(mesh); + +var s = 0; +var total_s = 0; +var first_time = true; +var animate = function () { + //console.log("updating background"); + update_size(); + delta_time = clock.getDelta(); + elapsed_time = clock.elapsedTime; + + var win = $(window); + var prev_s = s; + s = $(window).scrollTop(); + var ds = Math.abs(s - prev_s); + camera.position.z = -s/outer_h*(num_rings * depth_step); + //var color; + //color = new THREE.Color("#efefef"); + //if (s > content_h) { + // if (s > content_h + 1000) { + // color = new THREE.Color(1, 1, 1); + // } else { + // var q = (s - content_h) / 1000; + // //color = new THREE.Color(r + (1-r) * q, g + (1-g) * q, b + (1-b) * q); + // color = new THREE.Color(); + // color.setHSL(0, 0.5, q * 0.6 + 0.4); + // } + //} else { + // var q = (content_h-s) / content_h; + // color = new THREE.Color(); + // color.setHSL(q, 0.5, 0.4); + //} + //material.color = color; + if (ds > 0 || first_time) { + total_s += ds * 0.01; + update_colors(ds * 0.00001, s); + update_verts(total_s); + mkgeometry(mesh.geometry); + first_time = false; + } + renderer.render(scene, camera); + requestAnimationFrame( animate ); +}; +animate(); +//setInterval(animate, 500); // backup as sometimes requestAnimationFrame doesn't trigger in Firefox diff --git a/index.html b/index.html index e1f67fc..98b098f 100644 --- a/index.html +++ b/index.html @@ -5,6 +5,10 @@ zyq's Tools + + + +
@@ -18,34 +22,16 @@

This is a website for future tools. The source code can be found on my GitHub!

Clicking "Test It" will open the tool in the current tab.

More tools will come in the future.

-

MOTD: "To the mind that is still, the whole universe surrenders." - Lao Tzu

-
-
-

Mouse Test

-

This allows you to test your mouse's keys!

-
- - -
- Test It -
+
-
-

Keyboard Test

-

This allows you to test your keyboard's keys to see if they all work!

-
- Keyboard Image -
- Test It -
- -
+ + + + - - - + \ No newline at end of file diff --git a/quote.js b/quote.js new file mode 100644 index 0000000..d3bdf0c --- /dev/null +++ b/quote.js @@ -0,0 +1,72 @@ +const quotes = [ + "The journey of a thousand miles begins with one step. - Lao Tzu", + "Knowing others is wisdom, knowing yourself is Enlightenment. - Lao Tzu", + "A man who does not plan long ahead will find trouble right at his door. - Confucius", + "The man who moves a mountain begins by carrying away small stones. - Confucius", + "He who asks a question is a fool for five minutes; he who does not ask a question remains a fool forever. - Confucius", + "Life is really simple, but we insist on making it complicated. - Confucius", + "When it is obvious that the goals cannot be reached, don't adjust the goals, adjust the action steps. - Confucius", + "The superior man is modest in his speech but exceeds in his actions. - Confucius", + "Our greatest glory is not in never falling, but in rising every time we fall. - Confucius", + "Real knowledge is to know the extent of one's ignorance. - Confucius", + "To be wronged is nothing unless you continue to remember it. - Confucius", + "Silence is a true friend who never betrays. - Confucius", + "Choose a job you love, and you will never have to work a day in your life. - Confucius", + "The more man meditates upon good thoughts, the better will be his world and the world at large. - Confucius", + "To see what is right and not do it is the want of courage. - Confucius", + "I hear and I forget. I see and I remember. I do and I understand. - Confucius", + "When we see men of worth, we should think of equaling them; when we see men of a contrary character, we should turn inwards and examine ourselves. - Confucius", + "The superior man is modest in his speech, but exceeds in his actions. - Confucius", + "Ignorance is the night of the mind, but a night without moon and star. - Confucius", + "Wherever you go, go with all your heart. - Confucius", + "Wheresoever you go, go with all your heart. - Confucius", + "The gem cannot be polished without friction, nor man perfected without trials. - Confucius", + "When anger rises, think of the consequences. - Confucius", + "Better a diamond with a flaw than a pebble without. - Confucius", + "By nature, men are nearly alike; by practice, they get to be wide apart. - Confucius", + "When it is obvious that the goals cannot be reached, don't adjust the goals, adjust the action steps. - Confucius", + "What you do not want done to yourself, do not do to others. - Confucius", + "He who learns but does not think, is lost! He who thinks but does not learn is in great danger. - Confucius", + "To see and listen to the wicked is already the beginning of wickedness. - Confucius", + "Respect yourself and others will respect you. - Confucius", + "The superior man understands what is right; the inferior man understands what will sell. - Confucius", + "Without feelings of respect, what is there to distinguish men from beasts? - Confucius", + "Study the past if you would define the future. - Confucius", + "Success depends upon previous preparation, and without such preparation there is sure to be failure. - Confucius", + "If you think in terms of a year, plant a seed; if in terms of ten years, plant trees; if in terms of 100 years, teach the people. - Confucius", + "Wheresoever you go, go with all your heart. - Confucius", + "I hear and I forget. I see and I remember. I do and I understand. - Confucius", + "The man who asks a question is a fool for a minute, the man who does not ask is a fool for life. - Confucius", + "To know what is right and not do it is the worst cowardice. - Confucius", + "Real knowledge is to know the extent of one's ignorance. - Confucius", + "When you see a good person, think of becoming like them. When you see someone not so good, reflect on your own weak points. - Confucius", + "When it is obvious that the goals cannot be reached, don't adjust the goals, adjust the action steps. - Confucius", + "He who learns but does not think, is lost! He who thinks but does not learn is in great danger. - Confucius", + "The superior man is modest in his speech but exceeds in his actions. - Confucius", + "When we see men of a contrary character, we should turn inwards and examine ourselves. - Confucius", + "They must often change who would be constant in happiness or wisdom. - Confucius", + "The journey of a thousand miles begins with one step. - Lao Tzu", + "When I let go of what I am, I become what I might be. - Lao Tzu", + "Kindness in words creates confidence. Kindness in thinking creates profoundness. Kindness in giving creates love. - Lao Tzu", + "Mastering others is strength. Mastering yourself is true power. - Lao Tzu", + "Being deeply loved by someone gives you strength, while loving someone deeply gives you courage. - Lao Tzu", + "Life is a series of natural and spontaneous changes. Don't resist them; that only creates sorrow. Let reality be reality. Let things flow naturally forward in whatever way they like. - Lao Tzu", + "The wise man does not lay up his own treasures. The more he gives to others, the more he has for his own. - Lao Tzu", + "To the mind that is still, the whole universe surrenders. - Lao Tzu", + "The truth is not always beautiful, nor beautiful words the truth. - Lao Tzu", + "Act without expectation. - Lao Tzu", + "Nature does not hurry, yet everything is accomplished. - Lao Tzu", + "Time is a created thing. To say 'I don't have time,' is like saying, 'I don't want to.' - Lao Tzu", + "Be content with what you have; rejoice in the way things are. When you realize there is nothing lacking, the whole world belongs to you. - Lao Tzu", + "Those who know do not speak. Those who speak do not know. - Lao Tzu", + "Life and death are one thread, the same line viewed from different sides. - Lao Tzu", + "Do the difficult things while they are easy and do the great things while they are small. A journey of a thousand miles must begin with a single step. - Lao Tzu" +]; + +const randomIndex = Math.floor(Math.random() * quotes.length); +const randomQuote = quotes[randomIndex]; + +const motd = document.createElement('h3'); +motd.id = "motd"; +motd.innerHTML = `MOTD: ${randomQuote}`; +document.getElementById('welcome').appendChild(motd) diff --git a/style.css b/style.css index 188c076..70eacf4 100644 --- a/style.css +++ b/style.css @@ -3,7 +3,6 @@ body { justify-content: center; align-items: center; height: 100vh; - margin: 0; font-family: monospace; background-color: #2a2a2a; transition: background-color 0.3s, color 0.3s; @@ -39,18 +38,21 @@ img { overflow-x: hidden; } -.home { - text-decoration: none; - color: #f0f0f0; - padding: 10px; - background-color: rgba(75, 75, 75, 1); - border: 2px solid rgba(80, 80, 80, 1); - border-radius: 7px; - transition: 0.3s; - margin-left: 25px; - margin-right: -10px; - user-select: none; - cursor: pointer !important; +#footer { + display: flex; + align-items: center; + justify-content: center; + width: 100%; + max-width: 100vw; + position: fixed; + background-color: #3b3b3b80; + padding: 1.5vh 2vw; + backdrop-filter: blur(3px); + font-size: large; + bottom: 0; + border-top: 1px solid #46464680; + z-index: 9999; + overflow-x: hidden; } .theme-button { @@ -58,22 +60,15 @@ img { background: none; border: none; transition: 0.3s; -} - -.home:hover { - background-color: rgba(85, 85, 85, 1); - border: 2px solid rgba(90, 90, 90, 1); - text-decoration: underline; + margin-left: 30px; } .welcome { text-align: center; margin: 0; - width: 100vw; + width: 60vw; max-width: 1920px; line-height: 1.4; - padding-left: 20px; - padding-right: 20px; padding-bottom: 25px; padding-top: 60px; box-sizing: border-box; @@ -94,11 +89,12 @@ img { gap: 2.5vw; justify-content: center; min-height: 10vh; - max-width: 100vw; - padding-bottom: 50px; + max-width: 80vw; + margin-bottom: 50px; } #tool-div { + bottom: 20px !important; padding: 1vh 3vw; background-color: rgba(75, 75, 75, 1); border: 2px solid rgba(80, 80, 80, 1); @@ -111,6 +107,7 @@ img { justify-content: center; height: auto; max-width: 90vw; + width: 50vw; box-shadow: 0 4px 10px rgba(16, 16, 16, 0.5); } @@ -127,14 +124,9 @@ img { } .tool-media { - height: 200px; - border-radius: 10px; + max-width: 30vw; + border-radius: 5px; margin: 10px; - transition: 0.25s ease-in-out; -} - -.tool-image.active { - opacity: 1; } .visit-tool { diff --git a/theme.js b/theme.js index 53c2591..0e4f037 100644 --- a/theme.js +++ b/theme.js @@ -1,39 +1,40 @@ const themeToggle = document.getElementById('themeToggle'); -const topbar = document.getElementById('topbar') -const toolContainer = document.getElementById('tool-div') -const visit = document.getElementById('visit') -const welcome = document.getElementById('welcome') -const homeButton = document.getElementById('home') +const topbar = document.getElementById('topbar'); +const toolContainers = document.querySelectorAll('#tool-div'); +const visit = document.getElementById('visit'); +const welcome = document.getElementById('welcome'); let isLightMode = false; themeToggle.addEventListener('click', function() { - if (!isLightMode) { - document.body.style.backgroundColor = '#C8C8C8'; - topbar.style.backgroundColor = "#B0B0B0"; - topbar.style.borderColor = "#aeaeae"; - - - home.style.backgroundColor = "#909090"; - home.style.borderColor = "#858585"; - - - toolContainer.style.backgroundColor = "#B0B0B0"; - toolContainer.style.borderColor = "#A5A5A5"; + if (!isLightMode) { isLightMode = true; + document.body.style.backgroundColor = '#C8C8C8'; + topbar.style.backgroundColor = "#B0B0B0E1"; + topbar.style.borderColor = "#aeaeaeE1"; + footer.style.backgroundColor = "#B0B0B080"; + footer.style.backgroundColor = "#A5A5A580"; - let children = toolContainer.children; - for (let i = 0; i < children.length; i++) { - children[i].style.color = "#1E1E1E"; - } + + toolContainers.forEach(toolContainer => { + toolContainer.style.backgroundColor = "#B0B0B0"; + toolContainer.style.borderColor = "#A5A5A5"; + + let children = toolContainer.children; + for (let i = 0; i < children.length; i++) { + children[i].style.color = "#1E1E1E"; + } + }); let welcomeChildren = welcome.querySelectorAll('*'); - for (let o = 0; o< welcomeChildren.length; o++) { + for (let o = 0; o < welcomeChildren.length; o++) { welcomeChildren[o].style.color = "#1E1E1E"; } - visit.style.backgroundColor = "#8CC8A5"; - visit.style.borderColor = "#A0DCB9"; + if (visit) { + visit.style.backgroundColor = "#8CC8A5"; + visit.style.borderColor = "#A0DCB9"; + } themeToggle.innerHTML = ` @@ -41,7 +42,7 @@ themeToggle.addEventListener('click', function() { - + @@ -55,29 +56,31 @@ themeToggle.addEventListener('click', function() { document.body.style.backgroundColor = '#2a2a2a'; - home.style.backgroundColor = "#4b4b4b"; - home.style.borderColor = "#505050"; + toolContainers.forEach(toolContainer => { + let children = toolContainer.children; + for (let i = 0; i < children.length; i++) { + children[i].style.color = "#f0f0f0"; + } - let children = toolContainer.children; - for (let i = 0; i < children.length; i++) { - children[i].style.color = "#f0f0f0"; - } + toolContainer.style.backgroundColor = "#4b4b4b"; + toolContainer.style.borderColor = "#505050"; + }); let welcomeChildren = welcome.querySelectorAll('*'); - for (let o = 0; o< welcomeChildren.length; o++) { + for (let o = 0; o < welcomeChildren.length; o++) { welcomeChildren[o].style.color = "#f0f0f0"; } topbar.style.backgroundColor = "rgba(59, 59, 59, 0.885)"; - topbar.style.borderColor = "#505050"; + topbar.style.borderColor = "#505050E1"; + footer.style.backgroundColor = "#3b3b3b80"; + footer.style.backgroundColor = "#46464680"; - toolContainer.style.backgroundColor = "#4b4b4b"; - toolContainer.style.borderColor = "#505050"; - - visit.style.backgroundColor = "#3c7855"; - visit.style.borderColor = "#4b8764"; + if (visit) { + visit.style.backgroundColor = "#3c7855"; + visit.style.borderColor = "#4b8764"; + } themeToggle.innerHTML = ` `; - } -}); +}); \ No newline at end of file diff --git a/tools.js b/tools.js new file mode 100644 index 0000000..8946254 --- /dev/null +++ b/tools.js @@ -0,0 +1,50 @@ +async function fetchTools() { + try { + const response = await fetch('tools.json'); + if (!response.ok) { + throw new Error("VPS response is bad"); + } + const tools = await response.json(); + return tools; + } catch (error) { + console.error("Failed to fetch tools:", error); + return []; + }; +}; + +function renderTools(filteredTools) { + const toolList = document.getElementById('toolsMain'); + toolList.innerHTML = ""; + + if (filteredTools.length === 0) { + toolList.innerHTML = "
No tools match the selected filter.
" + return; + } + + filteredTools.sort((a, b) => b.description - a.description); + filteredTools.forEach(tool => { + const toolItem = document.createElement("div"); + toolItem.id = "tool-div"; + + toolItem.innerHTML = ` +

${tool.name}

+

${tool.subheader}

+

${tool.description}

+ ${tool.name} Image + Try the "${tool.name}" tool! + `; + + toolList.appendChild(toolItem); + }); +}; + +async function filterTools(filterType) { + const tools = await fetchTools(); + let filteredTools; + if (filterType) { + filteredTools = tools; + } + renderTools(filteredTools); +} + +filterTools('all'); diff --git a/tools.json b/tools.json new file mode 100644 index 0000000..b4668f7 --- /dev/null +++ b/tools.json @@ -0,0 +1,14 @@ +[ + { + "name": "Mouse Test", + "subheader": "Test your mouse's keys", + "description": "This tool allows you to test your mouse's keys: Left Click; Middle Click; Right Click.", + "url": "/click" + }, + { + "name": "Keyboard Test", + "subheader": "Test your keyboard's keys", + "description": "This tool allows you to test your keyboard's keys. To start, press any key to show its presses.", + "url": "/keyboard" + } +] \ No newline at end of file