diff options
Diffstat (limited to 'js/pixel-art/pixel/index.html')
-rw-r--r-- | js/pixel-art/pixel/index.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/js/pixel-art/pixel/index.html b/js/pixel-art/pixel/index.html index cc04595..68d754f 100644 --- a/js/pixel-art/pixel/index.html +++ b/js/pixel-art/pixel/index.html @@ -147,6 +147,10 @@ .pan-middle button { flex: 1; } + + #centerViewBtn { + margin-top: 10px; + } </style> </head> <body> @@ -161,7 +165,6 @@ <label for="colorPicker">Select Color:</label> <input type="color" id="colorPicker" value="#000000"> <div id="colorHistory" class="color-history"></div> - <button id="exportBtn">Export as PNG</button> <div class="zoom-controls"> <button id="zoomInBtn">🔍+</button> <button id="zoomOutBtn">🔍-</button> @@ -174,6 +177,9 @@ </div> <button id="panDownBtn">⬇️</button> </div> + <button id="centerViewBtn">🎯 Center View</button> + <hr> + <button id="exportBtn">Export as PNG</button> <button id="resetBtn">Reset</button> </div> <script src="app.js"></script> |