Javascript...
I seem to
have the basics down although I probably just used them to create a godawful bad UI...
I'm also guessing that for most of the things people use it for, they just end up copying one of a bunch of standard pieces of code...
... also what the hell is with firefox doing image scaling by point sampling.
Comments 9
Reply
That's not a terrible UI, though the "bigger on hover" thing in a dynamic layout is something I personally find annoying. You're also getting really long URLs with all those parameters -- there are some ways around that. But I'm biased, I usually use Javascript along with Ruby on Rails, so my server can do some of the work, and I can hide a lot of magic.
But yeah, overall, not bad at all.
Reply
I'm going to assume the mistake is on my end...
Reply
You could put the images in fixed-size containers so they don't reflow the rest of the page.
Reply
Reply
Personally, I preferred it when they were using nearest neighbor.
Reply
The point sampling done by firefox has always annoyed the piss out of me.
I actually e-mail administrators of websites who use the "height" and "width" tags to downsample their images rather than downsampling with gimp/photoshop/whatever.
Oddly : upsampling by 5/4 on my browser looks hideous, downsampling by 3/4 looks fine. So, naturally, I use the "my image downsampled by 3/4 using tags" as the "small" image in that example (I could also have two images, one for "not moused over" and one for "moused over")
Reply
However, some people have been doing so for (semi-) good reason. Since the dawn of time, every browser has used nearest neighbor to resample images. Some designers take advantage of this (whether they should or not is another question), when the "pixelated" look is desirable, by drawing tiny images and displaying them at some integer multiple of their actual size.
Suddenly, every browser decided to start using bilinear resampling (which looks like crap for a whole other set of reasons) or "soft" resampling (nearest neighbor with a Gaussian blur applied). This simultaneously made everything that was resizing images in-document look quite unlike it was intended to, and encouraged people to resize images in-document wildly since the resampling artifacts aren't as noticeable for most content now. Horrible.
Reply
Reply
Leave a comment