diff options
| -rw-r--r-- | dither-picker.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dither-picker.html b/dither-picker.html index f4680c2..5e9bff9 100644 --- a/dither-picker.html +++ b/dither-picker.html @@ -4,7 +4,8 @@ <title>Dither</title> <style> form { display: inline-block; } - #gallery-images img { max-width: 200px; height: 90px; margin: 5px; } + #gallery-images { display: block; max-height: 210px; overflow-y: auto; } + #gallery-images img, #gallery-images canvas { max-width: 200px; height: 100px; margin: 5px; cursor: pointer; } </style> </head> <body> @@ -74,10 +75,12 @@ ui.bind = function(){ } ui.choose = function(){ + status("loading image..") loadImage( this.src, ui.ready ); } ui.ready = function(){ + status("ready") loading = false if (window.gif) { frames = gif.frames |
