TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Foggy: jQuery plugin for blurring page elements

49 pointsby nbartlomiejover 12 years ago

8 comments

jwilliamsover 12 years ago
This is cool, but I'm not a big fan of "fogging" as a UI tool. I noticed Vista/Aero did this quite a bit.<p>The fogging just obscures information, but replaces it with something that is distracting. You might get an impression of what's there, but it's a tax to comprehend it. OS X (tend to) do this a lot better - if it's not useful, don't make the user squint at it.<p>Feels like a pure eye-candy effect with no benefit to the user, but I'd be interested in counter arguments/examples.
评论 #4472417 未加载
Trezoidover 12 years ago
using:<p>color: transparent; text-shadow: 0 0 5px;<p>Works way better for text on non-webkit browsers and is supported by everything but IE (and even that supports it in 10)<p>The current form of the blur on firefox is just plain ugly, and seems to be an overly complicated way of achieving the effect.
评论 #4472903 未加载
jonchangover 12 years ago
Why only include support for webkit browsers? When Mozilla and Microsoft implement the other parts of filter into their browsers, wouldn't you want native support there as well?
dlsymover 12 years ago
Sad thing: I bet this will be abused in a "Please login or signup to view this content!"-way.<p>Good thing: Instant bypass using 'developer tools' or firebug...
评论 #4473642 未加载
jeffehobbsover 12 years ago
Cool effect. Seeing a FOUFC (Flash Of UnFogged Content) on WebKit/iPad.
评论 #4472292 未加载
seltzered_over 12 years ago
there's also blur.js: blurjs.com, although it's tailored more for blurred div backgrounds.
squarecatover 12 years ago
Browser bokeh!
Toshioover 12 years ago
This might improve the user experience by visually signaling to the user that their mouse click to submit a form has been registered by the browser, and please do not click again while the server is processing your input.