Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sodhanalibrary/jqimgblureffects

jQuery Plugin For SVG Blur Effects On Image
https://github.com/sodhanalibrary/jqimgblureffects

Last synced: 12 days ago
JSON representation

jQuery Plugin For SVG Blur Effects On Image

Awesome Lists containing this project

README

        

# jqImgBlurEffects
jQuery Plugin For SVG Blur Effects On Image
### Implementation
This plugin was created on the concept un-blurring a part of image using SVG. Read [this article] (http://blog.ftmocks.com/2016/04/unblur-part-of-image-using-svg.html) for detailed expanation
### Quick Demo
[Click here] (http://demo.ftmocks.com/jqImgBlurEffects/demo_introduction.html) to see demo. You will understand, what you can do with this plugin
###Import jQuery
```js

```
###Import jqImgBlurEffects JS & CSS
```js

```
###HTML markup
```html

```
###JS Code
Observe below syntax. You will get better idea after seeing examples
```js
var myOptns = {
stdDeviation:,
brightness : ,
sintros:{
intromode:,
delay:,
transitionDelay:,
srectangles:,
scircles:,
sellipses:,
spaths:,
spolygons:,
stexts:
},
srectangles:,
scircles:,
sellipses:,
spaths:,
spolygons:,
stexts:,
smouseover : {
circle : ,
ellipse : ,
rectangle :
},
sclick : {
circle : ,
ellipse : ,
rectangle :
}
};

$(".myImg").jqImgBlur(myOptns);
```
##Un-Blur In A Shape
This plugin supports svg shapes - circle, ellipse, polygon, path , rectangle. Read [this article](http://blog.ftmocks.com/2016/05/jqimgblureffects-unblur-part-of-image_1.html) for detailed explanation
###Examples
1. Circle - [DEMO] (http://demo.ftmocks.com/jqImgBlurEffects/demo_circle.html)
2. Ellipse - [DEMO] (http://demo.ftmocks.com/jqImgBlurEffects/demo_ellipse.html)
3. Rectangle - [DEMO] (http://demo.ftmocks.com/jqImgBlurEffects/demo_rect.html)
4. Path - [DEMO] (http://demo.ftmocks.com/jqImgBlurEffects/demo_path.html)
5. Polygon - [DEMO] (http://demo.ftmocks.com/jqImgBlurEffects/demo_polygon.html)

##Un-Blur On Mouse Over
This plugin supports svg shapes - circle, ellipse, rectangle for mouse-over functionaliy. Read [this article](http://blog.ftmocks.com/2016/05/jqimgblureffects-unblur-part-of-image.html) for detailed explanation
###Examples
1. Circle - [DEMO] (http://demo.ftmocks.com/jqImgBlurEffects/demo_circle_mouseover.html)
2. Ellipse - [DEMO] (http://demo.ftmocks.com/jqImgBlurEffects/demo_ellipse_mouseover.html)
3. Rectangle - [DEMO] (http://demo.ftmocks.com/jqImgBlurEffects/demo_rect_mouseover.html)

##Un-Blur On Click
This plugin supports svg shapes - circle, ellipse, rectangle for click functionaliy. Read [this article](http://blog.ftmocks.com/2016/05/jqimgblureffects-unblur-part-of-image.html) for detailed explanation
###Examples
1. Circle - [DEMO] (http://demo.ftmocks.com/jqImgBlurEffects/demo_circle_click.html)
2. Ellipse - [DEMO] (http://demo.ftmocks.com/jqImgBlurEffects/demo_ellipse_click.html)
3. Rectangle - [DEMO] (http://demo.ftmocks.com/jqImgBlurEffects/demo_rect_click.html)

##Introduction To Parts Of Image
This plugin supports svg shapes - circle, ellipse, rectangle for this functionaliy. Read [this article](http://blog.ftmocks.com/2016/05/jqimgblureffects-step-by-step.html) for detailed explanation
###Examples
1. Circle - [DEMO] (http://demo.ftmocks.com/jqImgBlurEffects/demo_introduction.html)