diff options
| author | LV-426 <lv-426@taproot.org.il> | 2015-03-23 13:12:43 +0200 |
|---|---|---|
| committer | LV-426 <lv-426@taproot.org.il> | 2015-04-01 22:25:51 +0300 |
| commit | d1e4dd4975aab7374022bac6b276961855622eb9 (patch) | |
| tree | 7718d23306aa8fd00abd8b0310ae4dc4a22b9d4f /src/client/rz_core.js | |
| parent | f75ce21c1d6101bdd435d8bcf25ded0e0534a380 (diff) | |
creation bubble SVG blur effect
Diffstat (limited to 'src/client/rz_core.js')
| -rw-r--r-- | src/client/rz_core.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/client/rz_core.js b/src/client/rz_core.js index 299bd674..7eeb62e1 100644 --- a/src/client/rz_core.js +++ b/src/client/rz_core.js @@ -91,6 +91,11 @@ var initDrawingArea = function () { .attr("height", '100%') .attr("pointer-events", "all"); + vis.append('defs').append('filter').attr('id', 'f_blur__creation-circle') + .attr('y', '-10%') + .attr('x', '-10%').append('feGaussianBlur').attr('in', 'SourceGraphic') + .attr('stdDeviation', '15'); + var zoom_g = vis .append("g") .attr("class", "zoom"); |
