Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/DanielRapp/Noisy
A jQuery plugin that adds random noise to the background of a given element.
https://github.com/DanielRapp/Noisy
Last synced: 3 months ago
JSON representation
A jQuery plugin that adds random noise to the background of a given element.
- Host: GitHub
- URL: https://github.com/DanielRapp/Noisy
- Owner: DanielRapp
- License: mit
- Created: 2011-02-26T00:23:41.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2017-01-07T23:20:08.000Z (almost 8 years ago)
- Last Synced: 2024-07-11T01:15:08.971Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 131 KB
- Stars: 688
- Watchers: 13
- Forks: 38
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: MIT-LICENSE.txt
Awesome Lists containing this project
README
# Noisy
A jQuery plugin that adds random noise to the background of an element.
## Dependency
- [jQuery](https://github.com/jquery/jquery)
## Install
Just download the repository and link to the local minimized script:
````html
````
Alternatively, include it from [cdnjs.com](http://cdnjs.com):
````html
````
## Usage
An example showing all parameters would be the following:
````javascript
$('body').noisy({
intensity: 0.9,
size: 200,
opacity: 0.08,
fallback: 'fallback.png',
monochrome: false
});
````But since all parameters are optional you can just use it like this:
````javascript
$('body').noisy();
````You can also set a particles color with color option like this:
````javascript
$('body').noisy({
intensity: 0.9,
size: 200,
opacity: 0.08,
fallback: 'fallback.png',
randomColors: false, // true by default
color: '#000000'
});
````
This works, for now, just with the jquery version.## Rationale
What's wrong with using an image?
1. Bandwidth cost
Due to the random nature of background images with a noisy overlay,
compression usually isn't very effective. With this 1 KB script you can
generate images up to 300 KB without loading for even a second. Saving
bandwidth costs and loading time.
2. Development speed
Trying out an image with a different noise opacity involves a much smaller
amount of steps by just updating a parameter than changing and saving the
image in Photoshop.
3. Flexibility
By generating the background image in javascript, one does not need to rely
on the webserver being able to serve static files for it. With generated
favicons etc. a static files serving webserver becomes optional.## Contact
If you have any questions or suggestions that don't fit GitHub, send them to [@DanielRapp](http://twitter.com/DanielRapp)
## Support
I'd be flattered if you'd flattr this :)
[![Flattr this](http://api.flattr.com/button/flattr-badge-large.png)](http://flattr.com/thing/143004/jQuery-noise-generator)