0.0.3 • Published 6 years ago

shine.js v0.0.3

Weekly downloads
4
License
ISC
Repository
github
Last release
6 years ago

shine.js

NPM version

A library for pretty shadows, based on bigspaceship/shine.js

main img

Usage

ES6

import Shinejs from 'shine.js';

UMD

// download files
use shine.js/dist/shinejs.js

Browser

// download files
<script src="shine.js/dist/shinejs.js"></script>
const shine = new Shinejs.Shine(document.querySelector('#shine'));

Change the light position and make sure to redraw:

shine.light.position.x = window.innerWidth * 0.5;
shine.light.position.y = window.innerHeight * 0.5;
shine.draw(); // make sure to re-draw

Configuration

Each shine instance has a property pointing to an instance of Shinejs.Config. One config can be shared amongst multiple shine instances.

When a config value changes, shine.draw() needs to be called to re-draw with the new settings.

Change the shadow of a shine instance:

shine.config.opacity = 0.1;
shine.config.blur = 0.2;
shine.draw(); // make sure to re-draw

Create a shared Shinejs.Config instance:

// all parameters are optional and can be changed later
var config = new Shinejs.Config({
  numSteps: 4,
  opacity: 0.2,
  shadowRGB: new Shinejs.Color(255, 0, 0)
});

// pass the config in the constructor
var shineA = new Shine(document.getElementById('my-shine-object-a'), config);
var shineB = new Shine(document.getElementById('my-shine-object-b'), config);

// or assign it to an instance later
var shineC = new Shine(document.getElementById('my-shine-object-c'));
shineC.config = config;
shineC.draw(); // make sure to re-draw

Shine API

Note: Shine is also mapped to Shinejs.Shine. Use the long version if Shine is already defined.

Shine(domElement, optConfig, optClassPrefix, optShadowProperty)

The Shine constructor. Instantiate as new Shine(...) to create a new instance.

ParameterTypeDescription
domElement!HTMLElementThe DOM element to apply the shine effect to.
optConfig?Shinejs.Config=Optional config instance. If no instance is passed it a new instance with default values will be stored in the config property.
optClassPrefix?string=Optional class prefix that will be applied to all shine DOM elements. Defaults to shine-.
optShadowProperty?string=Optional property name that the shadow will be applied to. Overrides the automatic detection for use of either textShadow or boxShadow. The value will be applied as element.style[shadowProperty] = '...' and automatically prefixed for legacy browsers (e.g. MozBoxShadow).

Shine.prototype.draw()

Draws all shadows based on the current light position. Call this method whenever a shine parameter is changed.

Shine.prototype.destroy()

Releases all resources and removes event listeners. Destroyed instance can't be reused and must be discarded.

Shine.prototype.updateContent(optText)

Re-initializes all shadows. Use this when you want to change the text or the domElement's contents have changed.

ParameterTypeDescription
optText?string=If defined, will replace the DOM element's textContent. If omitted, the content will be read from the DOM element.

Shine.prototype.enableAutoUpdates()

Adds DOM event listeners to automatically update all properties.

Shine.prototype.disableAutoUpdates()

Removes DOM event listeners to automatically update all properties.

Shine Properties

PropertyTypeDescription
domElementHTMLElementThe DOM element to apply the shine effect to.
configShinejs.ConfigStores all config parameters.
lightShinejs.LightStores the light position and intensity.

Shinejs.Config API

Shinejs.Config(optSettings)

The shine config constructor. Pass an optional settings object from which to read values.

ParameterTypeDescription
optSettings?Object=An optional object containing config parameters.

Shinejs.Config Properties

PropertyTypeDefaultDescription
numStepsnumber8The number of steps drawn in each shadow
opacitynumber0.1The opacity of each shadow (range: 0...1)
opacityPownumber1.2The exponent applied to each step's opacity (1.0 = linear opacity).
offsetnumber0.15Larger offsets create longer shadows
offsetPownumber1.8The exponent applied to each step's offset (1.0 = linear offset).
blurnumber40The strength of the shadow blur.
blurPownumber1.4The exponent applied to each step's blur (1.0 = linear blur).
shadowRGBShinejs.Colornew Shinejs.Color(0, 0, 0)The shadow color in r, g, b (0...255)

Shinejs.Light API

Shinejs.Light(optPosition)

The light constructor. Pass an optional position to apply by default.

ParameterTypeDescription
optPosition?Shinejs.Point=An position. Defaults to new Shinejs.Point(0, 0).

Shinejs.Light Properties

PropertyTypeDefaultDescription
positionShinejs.Pointnew Shinejs.Point(0, 0)The position of this light.
intensitynumber1.0The intensity of this light. Gets multiplied with shadow opacity.

Shinejs.Point API

Shinejs.Point(x, y)

A 2D point class.

ParameterTypeDescription
xnumber=The x-coordinate. Defaults to 0.
ynumber=The y-coordinate. Defaults to 0.

Shinejs.Point Properties

PropertyTypeDefaultDescription
xnumber0The x-coordinate.
ynumber0The y-coordinate.

Shinejs.Point.prototype.delta(p)

Returns a new instance of Shinejs.Point with the x- and y-distance between this instance and the point p.

ParameterTypeDescription
pShinejs.PointThe point to which to calculate the distance to. Distance will be expressed as this.x - p.x and this.y - p.y.
0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago