Are these functionalities built into the service somewhere? Here's sample context:
HTML
<fa-modifier fa-opacity="opacityMod(testTimeline.get())">...
JS
$scope.testTimeline = new Transitionable(0);
$scope.opacityMod = $testTimeline([
[0, 0, Easing.inOutExpo],
[1, 1]
]);
$scope.testTimeline.set(1, {
duration: 500,
curver: 'easeInOut'
});
Couldn't find these in the docs or from reading src. The only ideas I had were:
- loops - setInterval or re-run animation on callback
- callback - setTimeout at same time testTimeline.set is called for the same duration within the same scope