0.02
No commit activity in last 3 years
No release in over 3 years
a sass port of the noisy js plugin as a compass extension that creates backgrond noise images as base64 data URIs
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 2.0

Runtime

 Project Readme

Sassy noise

A Sass port of Noisy JS (https://github.com/DanielRapp/Noisy) for generating noise background images as base64 data URIs.

Based on work of @philippbosch & @aaronrussell (https://gist.github.com/1021332).

Installation

$ gem install sassy_noise

In your Compass projects config.rb etc:

require "sassy_noise"

Basic usage

In your .scss:

// Default values
// $sassy-noise-intensity-default:  0.5;
// $sassy-noise-opacity-default:    0.08;
// $sassy-noise-size-default:       200;
// $sassy-noise-mono-default:       false;

@import "sassy-noise";

// Example usage on <body>

body {
  @include sassy-noise;
}

// Monochrome example
body {
  @include sassy-noise($mono: true);
}

No templates?

I've omitted the project template because probably no-one wants to build a project based on noise. I might add another pattern later.

Development

To run the project tests run rake in the project home directory.

You need RSpec to run the tests. Easiest way to install RSpec is to run gem install sassy_noise --development which installs the development dependencies.

TODO

  • Add templates
  • Add common case @mixins