summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorzlg <zlg@zlg.space>2023-08-29 06:28:04 -0700
committerzlg <zlg@zlg.space>2023-08-29 06:28:04 -0700
commite113ad82ea880ddc8c2e196755e9d9e236ef95b8 (patch)
treeea071345512f7dced8e2f16b377e21fb7af2a1c9 /index.html
downloadpixeled-js-e113ad82ea880ddc8c2e196755e9d9e236ef95b8.tar.gz
pixeled-js-e113ad82ea880ddc8c2e196755e9d9e236ef95b8.tar.bz2
pixeled-js-e113ad82ea880ddc8c2e196755e9d9e236ef95b8.tar.xz
pixeled-js-e113ad82ea880ddc8c2e196755e9d9e236ef95b8.zip
Initial commit
This pixel editor is a sort of 'proof of concept' for a Javascript app. It has support for three primary colors (black, white, custom), a darken and lighten tool, a rainbow tool, and you can right click to capture a color in the custom color box. Quite handy for simple little doodles. Future work will be done mostly in the CSS for the UI layout.
Diffstat (limited to 'index.html')
-rw-r--r--index.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..916aa02
--- /dev/null
+++ b/index.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <title>PixelED: make simple graphics in your browser!</title>
+ <link rel="stylesheet" type="text/css" href="./pixeled.css">
+ <meta http-equiv="Content-Type" content="text/html; charset=utf8">
+ </head>
+ <body onload="handler();">
+ <section id="app_area"></section>
+ <script type="text/javascript" src="./pixeled.js"></script>
+ </body>
+</html>