Cursor color
Example with white colored cursor
$('#mytext').NylAutoWriter({color: 'white'));
Cursor color and background
Example with background cursor
$('#mytext').NylAutoWriter({
color: 'black',
backgroundColor: 'white',
blackAndWhite: true
});
Cursor cyan
Example with background cursor
$('#mytext').NylAutoWriter({
color: 'black',
backgroundColor: 'cyan',
});
Mask customization
Example with background cursor
$('#mytext').NylAutoWriter({
mask: '0123456789',
iterations : 100
});
Callback
Example with callback
$('#mytext').NylAutoWriter(
{color: white},
function(){
alert('callback event');
}
);