jQuery Plugin To Generate Gradient Elements - Gradienter

File Size: 3.33 KB
Views Total: 1289
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   
jQuery Plugin To Generate Gradient Elements - Gradienter

Gradienter is a small jQuery plugin that generates gradients from a range of user selected colors and then apply them on CSS properties of any DOM elements. Perfect to use for gradient background, gradient text, etc.

See also:

How to use it:

1. Load jQuery library and the jQuery Gradienter plugin in the document.

<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="gradienter.js"></script>

2. Create a set of elements on where you wish to apply the gradients.

<div class="gradient">
  <div class="demo"></div>
  <div class="demo"></div>
  <div class="demo"></div>
  <div class="demo"></div>
  <div class="demo"></div>
  <div class="demo"></div>
  <div class="demo"></div>
  <div class="demo"></div>
  <div class="demo"></div>
  <div class="demo"></div>
</div>

3. Call the plugin on the target elements, setup the start/end colors and the desired CSS property.

$('.demo').gradienter({

// first color in gradient
color_start: 'ffffff',

// last color in gradient
color_end: '000000',

// on which CSS property should apply gradient
prop: 'background-color'

});

This awesome jQuery plugin is developed by kopipejst. For more Advanced Usages, please check the demo page or visit the official website.