Base flicker implementation.
npm install spa-component-flickerFlicker component
=================





Flicker is a component to build user interface, an instance of Component module.
``bash`
npm install spa-component-flicker
Add the constructor to the scope:
`js`
var Flicker = require('spa-component-flicker');
Create an instance with config:
`js
var flicker = new Flicker({
className: 'clock',
interval: 1000,
render: function ( $item, value ) {
var time = new Date(),
hours = time.getHours(),
mins = time.getMinutes();
$item.innerText = (hours > 9 ? hours : '0' + hours) + ':' + (mins > 9 ? mins : '0' + mins);
}
});
`
Start flickering:
`js`
flicker.start();
Stop flickering:
`js`
flicker.stop();
> There is a global var DEVELOP which activates additional consistency checks and protection logic not available in release mode.
If you have any problems or suggestions please open an issue
according to the contribution rules.
spa-component-flicker` is released under the MIT License.