document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. $(selector).realshadow(); // options are optional
  2.  
  3. $(selector).realshadow({
  4.  
  5.     followMouse: false,   // true by default
  6.  
  7.     pageX:       x,       // x coordinate of the light source
  8.     pageY:       y        // y coordinate of the light source
  9.  
  10.     c: {                  // shadow color
  11.         r: 1,             // red   channel for shadow
  12.         g: 1,             // green channel for shadow
  13.         b: 1,             // blue  channel for shadow
  14.     }
  15.  
  16. });
');