Show HN: React component for blurred backgrounds
1–10 of 18 posts
Re: Show HN: React component for blurred backgrounds
#2Re: Show HN: React component for blurred backgrounds
#3Is there some advantage I'm missing?
Re: Show HN: React component for blurred backgrounds
#4Does this need to be a canvas-scribbling React component when you can do this with better performance using a couple of lines of CSS filters? Is there some advantage I'm missing?
Re: Show HN: React component for blurred backgrounds
#5Re: Show HN: React component for blurred backgrounds
#6Does this need to be a canvas-scribbling React component when you can do this with better performance using a couple of lines of CSS filters? Is there some advantage I'm missing?
Author here. As far as I know there is no way to do blur with CSS in IE10+ https://github.com/Schepp/CSS-Filters-Polyfill#a-word-regard... so we must use canvas to be cross-browser.
http://blogs.msdn.com/b/ie/archive/2011/10/14/svg-filter-eff...
Edit: to clarify, the image would need to be moved into the SVG (which could be a simple DOM manipulation of the original tag).
Re: Show HN: React component for blurred backgrounds
#7Earlier quoted context omitted.
Author here. As far as I know there is no way to do blur with CSS in IE10+ https://github.com/Schepp/CSS-Filters-Polyfill#a-word-regard... so we must use canvas to be cross-browser.
You can. SVG Filters are supported. http://blogs.msdn.com/b/ie/archive/2011/10/14/svg-filter-eff... Edit: to clarify, the image would need to be moved into the SVG (which could be a simple DOM manipulation of the original tag).
Re: Show HN: React component for blurred backgrounds
#8Earlier quoted context omitted.
Author here. As far as I know there is no way to do blur with CSS in IE10+ https://github.com/Schepp/CSS-Filters-Polyfill#a-word-regard... so we must use canvas to be cross-browser.
You can. SVG Filters are supported. http://blogs.msdn.com/b/ie/archive/2011/10/14/svg-filter-eff... Edit: to clarify, the image would need to be moved into the SVG (which could be a simple DOM manipulation of the original tag).
Re: Show HN: React component for blurred backgrounds
#9I noticed that you're caching `this` as a variable:
var Blur = this,
And it looks like you're doing so to avoid scope problems in anonymous functions: Blur.img.onload = function(){
stackBlurImage( Blur.img, Blur.canvas, blurRadius, Blur.width, Blur.height)
};
I personally don't like this style. It makes it harder to read the code. If someone misses that `var Blur = this` line, they could get confused and either not use it, or use it incorrectly.Instead, since you're using ES6, I suggest using the fat arrow:
this.img.onload = () => {
stackBlurImage(this.img, this.canvas, blurRadius, this.width, this.height);
};
(I'm used to writing Coffeescript instead of ES6, so sorry if minor syntax details are wrong.)This is largely a stylistic choice. You can feel free to do things however you want, and if it works, it works. But generally I prefer to make sure things are really clear, and that the Javascript features aren't obscured.