├── img
├── favicon.ico
├── largetile.png
├── smalltile.png
├── widetile.png
├── mediumtile.png
├── favicon-16x16.png
├── favicon-32x32.png
├── favicon-96x96.png
├── android-chrome-192x192.png
├── apple-touch-icon-114x114.png
├── apple-touch-icon-120x120.png
├── apple-touch-icon-144x144.png
├── apple-touch-icon-152x152.png
├── apple-touch-icon-180x180.png
├── apple-touch-icon-57x57.png
├── apple-touch-icon-60x60.png
├── apple-touch-icon-72x72.png
└── apple-touch-icon-76x76.png
├── jquery.spectrum.js.zip
├── js
├── main.js
└── jquery.spectrum.js
├── README.md
├── index.html
└── css
├── style.css
└── animate.css
/img/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andreacrofts/spectrum-plugin/HEAD/img/favicon.ico
--------------------------------------------------------------------------------
/img/largetile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andreacrofts/spectrum-plugin/HEAD/img/largetile.png
--------------------------------------------------------------------------------
/img/smalltile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andreacrofts/spectrum-plugin/HEAD/img/smalltile.png
--------------------------------------------------------------------------------
/img/widetile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andreacrofts/spectrum-plugin/HEAD/img/widetile.png
--------------------------------------------------------------------------------
/img/mediumtile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andreacrofts/spectrum-plugin/HEAD/img/mediumtile.png
--------------------------------------------------------------------------------
/img/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andreacrofts/spectrum-plugin/HEAD/img/favicon-16x16.png
--------------------------------------------------------------------------------
/img/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andreacrofts/spectrum-plugin/HEAD/img/favicon-32x32.png
--------------------------------------------------------------------------------
/img/favicon-96x96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andreacrofts/spectrum-plugin/HEAD/img/favicon-96x96.png
--------------------------------------------------------------------------------
/jquery.spectrum.js.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andreacrofts/spectrum-plugin/HEAD/jquery.spectrum.js.zip
--------------------------------------------------------------------------------
/js/main.js:
--------------------------------------------------------------------------------
1 | // Document Ready
2 |
3 | $(document).ready(function(){
4 | $('.header').spectrum();
5 | });
--------------------------------------------------------------------------------
/img/android-chrome-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andreacrofts/spectrum-plugin/HEAD/img/android-chrome-192x192.png
--------------------------------------------------------------------------------
/img/apple-touch-icon-114x114.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andreacrofts/spectrum-plugin/HEAD/img/apple-touch-icon-114x114.png
--------------------------------------------------------------------------------
/img/apple-touch-icon-120x120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andreacrofts/spectrum-plugin/HEAD/img/apple-touch-icon-120x120.png
--------------------------------------------------------------------------------
/img/apple-touch-icon-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andreacrofts/spectrum-plugin/HEAD/img/apple-touch-icon-144x144.png
--------------------------------------------------------------------------------
/img/apple-touch-icon-152x152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andreacrofts/spectrum-plugin/HEAD/img/apple-touch-icon-152x152.png
--------------------------------------------------------------------------------
/img/apple-touch-icon-180x180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andreacrofts/spectrum-plugin/HEAD/img/apple-touch-icon-180x180.png
--------------------------------------------------------------------------------
/img/apple-touch-icon-57x57.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andreacrofts/spectrum-plugin/HEAD/img/apple-touch-icon-57x57.png
--------------------------------------------------------------------------------
/img/apple-touch-icon-60x60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andreacrofts/spectrum-plugin/HEAD/img/apple-touch-icon-60x60.png
--------------------------------------------------------------------------------
/img/apple-touch-icon-72x72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andreacrofts/spectrum-plugin/HEAD/img/apple-touch-icon-72x72.png
--------------------------------------------------------------------------------
/img/apple-touch-icon-76x76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/andreacrofts/spectrum-plugin/HEAD/img/apple-touch-icon-76x76.png
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | Spectrum
2 | ========
3 |
4 | A dynamic & colourful jQuery plugin perfect for adding subtle colour transitions to your web applications. View it live at www.andreacrofts.codes/spectrum.
5 |
6 | ### First Things First
7 | Download jquery.spectrum.js and place the file into the JavaScript folder in your directory. The root path should look something like this:
8 |
9 | ```
10 | mainFolder > js > jquery.spectrum.js
11 | ```
12 |
13 | ### Getting Started
14 | Include jQuery and the jquery.spectrum.js script in your HTML document, before the closing body tag, as demonstrated below. Note that the plugin script must be placed after the jQuery script, and must be properly linked from your directory (example, js/jquery.spectrum.js).
15 |
16 |
17 | ```
18 |
19 |
20 |