Plugin has option to change interval for counting, but each interval is represented as 1. So, default interval is 1000, and if you put that to 3000 it will slow down counting 3 times, but it will still count 1 by 1, only the interval between changes is increased. From your code, you need this also.
So, here is the example that has the interval changed from 1000 to 3000:
var stceClockAnimated = jQuery('#stac-dev-animated').smartTimerCounter({
skin: 'Inline'
display: {},
timer: {
interval: 3000
}
});
You need the [b]timer[/b] bit to add to your code. It changes interval from 1000 (1 second) to 3000 (3 seconds).
Milan