foggy icon indicating copy to clipboard operation
foggy copied to clipboard

Firefox issue

Open thedeviousdev opened this issue 11 years ago • 3 comments

Great plugin, saved me some headaches!

Currently I'm having a problem with firefox and getting the blur to fire. The test page is located here: http://loiseau-noir.com/seb/home.html

If you click on the black circle, it opens up a new menu, and the image in the background should blur. In Chrome it works perfectly, however in Firefox no blur event fires.

Is it due to conflicting plugins or something else?

Thanks!

thedeviousdev avatar Jul 06 '13 17:07 thedeviousdev

Is the console showing any jQuery errors?

Clocktower avatar Mar 04 '14 00:03 Clocktower

I have the same problem. I can fire it from the console, but only in manual mode, which is too slow to be useful.

After the page is blurred, the JS on the page freezes

FF 26.0 jQuery 1.11.0

it-minds-maj avatar Apr 28 '14 12:04 it-minds-maj

You can add 'filter': 'blur('+filterBlurRadius+'px)', below line 135 and it works a little better. However, I still get other css issues on Firefox caused by this plugin. Going to use jQuery.css instead:

blurRadius = '2px'
$elem.css('filter', "blur(#{blurRadius})")
$elem.css('-webkit-filter', "blur(#{blurRadius})")

dsandstrom avatar May 13 '15 17:05 dsandstrom