thelolcat
thelolcat

Reputation: 11545

How is this blur effect done in javascript?

http://wowslider.com/jquery-image-rotator-terse-blur-demo.html

I can't find any blur-related CSS 3 property. And they don't appear to be using Flash..

Upvotes: 3

Views: 3354

Answers (1)

Patrick Moore
Patrick Moore

Reputation: 13344

They're drawing on HTML5's <canvas>, not CSS3.

Reference: http://www.flother.com/blog/2010/image-blur-html5-canvas/

Upvotes: 4

Related Questions