🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

A jQuery plugin that jumbles up the colours of your text headers, and can also animate them. Choose a colour range for the colours to be jumbled amongst, and set params for whether the shuffle is based on brightness or satuation hue.

Animation Plugins Text Effect

Documentation

JUMBLE

A jQuery plugin that jumbles up the colours of your text headers, and can also animate them. Choose a colour range for the colours to be jumbled amongst, and set params for whether the shuffle is based on brightness or satuation hue.

Plugin Site

BASIC USAGE:

$('h1').jumble( 	colour_1, 	colour_2, 	brightness, 	satuation, 	time );

config options:

  • colour 1: rgb array-> [255,255,55]
  • colour 2: rgb array-> [255,0,155] optional: (if singular colour then declare false)
  • brightness : boolean-> false
  • satuation boolean-> true
  • time mileseconds-> 1000 optional: declare only if you want it to animate

usage example

```javascript $('h1').jumble([180,160,90],[230,20,130],true,false,200); ```

You May Also Like