snabbt.js icon indicating copy to clipboard operation
snabbt.js copied to clipboard

Attention animations not fire complete and allDone event

Open weituotian opened this issue 6 years ago • 0 comments

it is not work

$imgWraper.snabbt('attention',{
                    position: [50, 0, 0],
                    springConstant: 2.4,
                    springDeceleration: 0.9,
                    complete: function (index, total) {
                        console.log(index, total);
                    },
                    allDone: function() {
                        console.log(index, total);
                    }
                });

if do not use 'attention', it works!

$imgWraper.snabbt({
                    position: [50, 0, 0],
                    springConstant: 2.4,
                    springDeceleration: 0.9,
                    complete: function (index, total) {
                        console.log(index, total);
                    },
                    allDone: function() {
                        console.log(index, total);
                    }
                });

image

weituotian avatar Jan 11 '18 01:01 weituotian