1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
|
SVG.easing = {
'-': function(pos){return pos}
, '<>':function(pos){return -Math.cos(pos * Math.PI) / 2 + 0.5}
, '>': function(pos){return Math.sin(pos * Math.PI / 2)}
, '<': function(pos){return -Math.cos(pos * Math.PI / 2) + 1}
}
SVG.morph = function(pos){
return function(from, to) {
return new SVG.MorphObj(from, to).at(pos)
}
}
SVG.Situation = SVG.invent({
create: function(o){
this.init = false
this.reversed = false
this.reversing = false
this.duration = new SVG.Number(o.duration).valueOf()
this.delay = new SVG.Number(o.delay).valueOf()
this.start = +new Date() + this.delay
this.finish = this.start + this.duration
this.ease = o.ease
this.loop = false
this.loops = false
this.animations = {
// functionToCall: [list of morphable objects]
// e.g. move: [SVG.Number, SVG.Number]
}
this.attrs = {
// holds all attributes which are not represented from a function svg.js provides
// e.g. someAttr: SVG.Number
}
this.styles = {
// holds all styles which should be animated
// e.g. fill-color: SVG.Color
}
this.transforms = [
// holds all transformations as transformation objects
// e.g. [SVG.Rotate, SVG.Translate, SVG.Matrix]
]
this.once = {
// functions to fire at a specific position
// e.g. "0.5": function foo(){}
}
}
})
SVG.Delay = function(delay){
this.delay = new SVG.Number(delay).valueOf()
}
SVG.FX = SVG.invent({
create: function(element) {
this._target = element
this.situations = []
this.active = false
this.situation = null
this.paused = false
this.lastPos = 0
this.pos = 0
this.spd = 1
}
, extend: {
/**
* sets or returns the target of this animation
* @param o object || number In case of Object it holds all parameters. In case of number its the duration of the animation
* @param ease function || string Function which should be used for easing or easing keyword
* @param delay Number indicating the delay before the animation starts
* @return target || this
*/
animate: function(o, ease, delay){
if(typeof o == 'object'){
ease = o.ease
delay = o.delay
o = o.duration
}
var situation = new SVG.Situation({
duration: o || 1000,
delay: delay || 0,
ease: SVG.easing[ease || '-'] || ease
})
this.queue(situation)
return this
}
/**
* sets a delay before the next element of the queue is called
* @param delay Duration of delay in milliseconds
* @return this.target()
*/
, delay: function(delay){
var delay = new SVG.Delay(delay)
return this.queue(delay)
}
/**
* sets or returns the target of this animation
* @param null || target SVG.Elemenet which should be set as new target
* @return target || this
*/
, target: function(target){
if(target && target instanceof SVG.Element){
this._target = target
return this
}
return this._target
}
// returns the position at a given time
, timeToPos: function(timestamp){
return (timestamp - this.situation.start) / (this.situation.duration/this.spd)
}
// returns the timestamp from a given positon
, posToTime: function(pos){
return this.situation.duration/this.spd * pos + this.situation.start
}
// starts the animationloop
, startAnimFrame: function(){
this.stopAnimFrame()
this.animationFrame = requestAnimationFrame(function(){ this.step() }.bind(this))
}
// cancels the animationframe
, stopAnimFrame: function(){
cancelAnimationFrame(this.animationFrame)
}
// kicks off the animation - only does something when the queue is curretly not active and at least one situation is set
, start: function(){
// dont start if already started
if(!this.active && this.situation){
this.situation.start = +new Date + this.situation.delay
this.situation.finish = this.situation.start + this.situation.duration/this.spd
this.initAnimations()
this.active = true
this.startAnimFrame()
}
return this
}
/**
* adds a function / Situation to the animation queue
* @param fn function / situation to add
* @return this
*/
, queue: function(fn){
if(typeof fn == 'function' || fn instanceof SVG.Situation || fn instanceof SVG.Delay)
this.situations.push(fn)
if(!this.situation) this.situation = this.situations.shift()
return this
}
/**
* pulls next element from the queue and execute it
* @return this
*/
, dequeue: function(){
// stop current animation
this.situation && this.situation.stop && this.situation.stop()
// get next animation from queue
this.situation = this.situations.shift()
if(this.situation){
var fn = function(){
if(this.situation instanceof SVG.Situation)
this.initAnimations().at(0)
else if(this.situation instanceof SVG.Delay)
this.dequeue()
else
this.situation.call(this)
}.bind(this)
// start next animation
if(this.situation.delay){
setTimeout(function(){fn()}, this.situation.delay)
}else{
fn()
}
}
return this
}
// updates all animations to the current state of the element
// this is important when one property could be changed from another property
, initAnimations: function() {
var i
var s = this.situation
if(s.init) return this
for(i in s.animations){
if(i == 'viewbox'){
s.animations[i] = this.target().viewbox().morph(s.animations[i])
}else{
// TODO: this is not a clean clone of the array. We may have some unchecked references
s.animations[i].value = (i == 'plot' ? this.target().array().value : this.target()[i]())
// sometimes we get back an object and not the real value, fix this
if(s.animations[i].value.value){
s.animations[i].value = s.animations[i].value.value
}
if(s.animations[i].relative)
s.animations[i].destination.value = s.animations[i].destination.value + s.animations[i].value
}
}
for(i in s.attrs){
if(s.attrs[i] instanceof SVG.Color){
var color = new SVG.Color(this.target().attr(i))
s.attrs[i].r = color.r
s.attrs[i].g = color.g
s.attrs[i].b = color.b
}else{
s.attrs[i].value = this.target().attr(i)// + s.attrs[i].value
}
}
for(i in s.styles){
s.styles[i].value = this.target().style(i)
}
s.initialTransformation = this.target().matrixify()
s.init = true
return this
}
, clearQueue: function(){
this.situations = []
return this
}
, clearCurrent: function(){
this.situation = null
return this
}
/** stops the animation immediately
* @param jumpToEnd A Boolean indicating whether to complete the current animation immediately.
* @param clearQueue A Boolean indicating whether to remove queued animation as well.
* @return this
*/
, stop: function(jumpToEnd, clearQueue){
if(!this.active) this.start()
if(clearQueue){
this.clearQueue()
}
this.active = false
if(jumpToEnd && this.situation){
this.situation.loop = false
if(this.situation.loops % 2 == 0 && this.situation.reversing){
this.situation.reversed = true
}
this.at(1)
}
this.stopAnimFrame()
clearTimeout(this.timeout)
return this.clearCurrent()
}
/** resets the element to the state where the current element has started
* @return this
*/
, reset: function(){
if(this.situation){
var temp = this.situation
this.stop()
this.situation = temp
this.at(0)
}
return this
}
// Stop the currently-running animation, remove all queued animations, and complete all animations for the element.
, finish: function(){
this.stop(true, false)
while(this.dequeue().situation && this.stop(true, false));
this.clearQueue().clearCurrent()
return this
}
// set the internal animation pointer to the specified position and updates the visualisation
, at: function(pos){
var durDivSpd = this.situation.duration/this.spd
this.pos = pos
this.situation.start = +new Date - pos * durDivSpd
this.situation.finish = this.situation.start + durDivSpd
return this.step(true)
}
// set/get the speed of the animation
, speed: function(spd){
if (spd === 0) return this.pause()
if (spd) {
this.spd = spd
return this.at(this.situation.reversed ? 1-this.pos : this.pos)
} else return this.spd
}
// Make loopable
, loop: function(times, reverse) {
var c = this.last()
// store current loop and total loops
c.loop = c.loops = times || true
if(reverse) c.reversing = true
return this
}
// pauses the animation
, pause: function(){
this.paused = true
this.stopAnimFrame()
clearTimeout(this.timeout)
return this
}
// unpause the animation
, play: function(){
if(!this.paused) return this
this.paused = false
return this.at(this.pos)
}
/**
* toggle or set the direction of the animation
* true sets direction to backwards while false sets it to forwards
* @param reversed Boolean indicating whether to reverse the animation or not (default: toggle the reverse status)
* @return this
*/
, reverse: function(reversed){
var c = this.last()
if(typeof reversed == 'undefined') c.reversed = !c.reversed
else c.reversed = reversed
return this
}
/**
* returns a float from 0-1 indicating the progress of the current animation
* @param eased Boolean indicating whether the returned position should be eased or not
* @return number
*/
, progress: function(easeIt){
return easeIt ? this.situation.ease(this.pos) : this.pos
}
/**
* adds a callback function which is called when the current animation is finished
* @param fn Function which should be executed as callback
* @return number
*/
, after: function(fn){
var c = this.last()
, wrapper = function wrapper(e){
if(e.detail.situation == c){
fn.call(this, c)
this.off('finished.fx', wrapper) // prevent memory leak
}
}
this.target().on('finished.fx', wrapper)
return this
}
// adds a callback which is called whenever one animation step is performed
, during: function(fn){
var c = this.last()
, wrapper = function(e){
if(e.detail.situation == c){
fn.call(this, e.detail.pos, SVG.morph(e.detail.pos), e.detail.eased, c)
}
}
// see above
this.target().off('during.fx', wrapper).on('during.fx', wrapper)
return this.after(function(){
this.off('during.fx', wrapper)
})
}
// calls after ALL animations in the queue are finished
, afterAll: function(fn){
var wrapper = function wrapper(e){
fn.call(this)
this.off('allfinished.fx', wrapper)
}
// see above
this.target().off('allfinished.fx', wrapper).on('allfinished.fx', wrapper)
return this
}
// calls on every animation step for all animations
, duringAll: function(fn){
var wrapper = function(e){
fn.call(this, e.detail.pos, SVG.morph(e.detail.pos), e.detail.eased, e.detail.situation)
}
this.target().off('during.fx', wrapper).on('during.fx', wrapper)
return this.afterAll(function(){
this.off('during.fx', wrapper)
})
}
, last: function(){
return this.situations.length ? this.situations[this.situations.length-1] : this.situation
}
// adds one property to the animations
, add: function(method, args, type){
this.last()[type || 'animations'][method] = args
setTimeout(function(){this.start()}.bind(this), 0)
return this
}
/** perform one step of the animation
* @param ignoreTime Boolean indicating whether to ignore time and use position directly or recalculate position based on time
* @return this
*/
, step: function(ignoreTime){
// convert current time to position
if(!ignoreTime) this.pos = this.timeToPos(+new Date)
if(this.pos >= 1 && (this.situation.loop === true || (typeof this.situation.loop == 'number' && --this.situation.loop))){
if(this.situation.reversing){
this.situation.reversed = !this.situation.reversed
}
return this.at(this.pos-1)
}
if(this.situation.reversed) this.pos = 1 - this.pos
// correct position
if(this.pos > 1)this.pos = 1
if(this.pos < 0)this.pos = 0
// apply easing
var eased = this.situation.ease(this.pos)
// call once-callbacks
for(var i in this.situation.once){
if(i > this.lastPos && i <= eased){
this.situation.once[i].call(this.target(), this.pos, eased)
delete this.situation.once[i]
}
}
// fire during callback with position, eased position and current situation as parameter
if(this.active) this.target().fire('during', {pos: this.pos, eased: eased, fx: this, situation: this.situation})
// the user may call stop or finish in the during callback
// so make sure that we still have a valid situation
if(!this.situation){
return this
}
// apply the actual animation to every property
this.eachAt()
// do final code when situation is finished
if((this.pos == 1 && !this.situation.reversed) || (this.situation.reversed && this.pos == 0)){
// stop animation callback
this.stopAnimFrame()
// fire finished callback with current situation as parameter
this.target().fire('finished', {fx:this, situation: this.situation})
if(!this.situations.length){
this.target().fire('allfinished')
this.target().off('.fx') // there shouldnt be any binding left, but to make sure...
this.active = false
}
// start next animation
if(this.active) this.dequeue()
else this.clearCurrent()
}else if(!this.paused && this.active){
// we continue animating when we are not at the end
this.startAnimFrame()
}
// save last eased position for once callback triggering
this.lastPos = eased
return this
}
// calculates the step for every property and calls block with it
, eachAt: function(){
var i, at, self = this, target = this.target(), s = this.situation
// apply animations which can be called trough a method
for(i in s.animations){
at = [].concat(s.animations[i]).map(function(el){
return el.at ? el.at(s.ease(self.pos), self.pos) : el
})
target[i].apply(target, at)
}
// apply animation which has to be applied with attr()
for(i in s.attrs){
at = [i].concat(s.attrs[i]).map(function(el){
return el.at ? el.at(s.ease(self.pos), self.pos) : el
})
target.attr.apply(target, at)
}
// apply animation which has to be applied with style()
for(i in s.styles){
at = [i].concat(s.styles[i]).map(function(el){
return el.at ? el.at(s.ease(self.pos), self.pos) : el
})
target.style.apply(target, at)
}
// animate initialTransformation which has to be chained
if(s.transforms.length){
// get inital initialTransformation
at = s.initialTransformation
for(i in s.transforms){
// get next transformation in chain
var a = s.transforms[i]
// multiply matrix directly
if(a instanceof SVG.Matrix){
if(a.relative){
at = at.multiply(a.at(s.ease(this.pos)))
}else{
at = at.morph(a).at(s.ease(this.pos))
}
continue
}
// when transformation is absolute we have to reset the needed transformation first
if(!a.relative)
a.undo(at.extract())
// and reapply it after
at = at.multiply(a.at(s.ease(this.pos)))
}
// set new matrix on element
target.matrix(at)
}
return this
}
// adds an once-callback which is called at a specific position and never again
, once: function(pos, fn, isEased){
if(!isEased)pos = this.situation.ease(pos)
this.situation.once[pos] = fn
return this
}
}
, parent: SVG.Element
// Add method to parent elements
, construct: {
// Get fx module or create a new one, then animate with given duration and ease
animate: function(o, ease, delay) {
return (this.fx || (this.fx = new SVG.FX(this))).animate(o, ease, delay)
}
, delay: function(delay){
return (this.fx || (this.fx = new SVG.FX(this))).delay(delay)
}
, stop: function(jumpToEnd, clearQueue) {
if (this.fx)
this.fx.stop(jumpToEnd, clearQueue)
return this
}
, finish: function() {
if (this.fx)
this.fx.finish()
return this
}
// Pause current animation
, pause: function() {
if (this.fx)
this.fx.pause()
return this
}
// Play paused current animation
, play: function() {
if (this.fx)
this.fx.play()
return this
}
}
})
// MorphObj is used whenever no morphable object is given
SVG.MorphObj = SVG.invent({
create: function(from, to){
// prepare color for morphing
if(SVG.Color.isColor(to)) return new SVG.Color(from).morph(to)
// prepare number for morphing
if(SVG.regex.numberAndUnit.test(to)) return new SVG.Number(from).morph(to)
// prepare for plain morphing
this.value = 0
this.destination = to
}
, extend: {
at: function(pos, real){
return real < 1 ? this.value : this.destination
},
valueOf: function(){
return this.value
}
}
})
SVG.extend(SVG.FX, {
// Add animatable attributes
attr: function(a, v, relative) {
// apply attributes individually
if (typeof a == 'object') {
for (var key in a)
this.attr(key, a[key])
} else {
// the MorphObj takes care about the right function used
this.add(a, new SVG.MorphObj(null, v), 'attrs')
}
return this
}
// Add animatable styles
, style: function(s, v) {
if (typeof s == 'object')
for (var key in s)
this.style(key, s[key])
else
this.add(s, new SVG.MorphObj(null, v), 'styles')
return this
}
// Animatable x-axis
, x: function(x, relative) {
if(this.target() instanceof SVG.G){
this.transform({x:x}, relative)
return this
}
var num = new SVG.Number().morph(x)
num.relative = relative
return this.add('x', num)
}
// Animatable y-axis
, y: function(y, relative) {
if(this.target() instanceof SVG.G){
this.transform({y:y}, relative)
return this
}
var num = new SVG.Number().morph(y)
num.relative = relative
return this.add('y', num)
}
// Animatable center x-axis
, cx: function(x) {
return this.add('cx', new SVG.Number().morph(x))
}
// Animatable center y-axis
, cy: function(y) {
return this.add('cy', new SVG.Number().morph(y))
}
// Add animatable move
, move: function(x, y) {
return this.x(x).y(y)
}
// Add animatable center
, center: function(x, y) {
return this.cx(x).cy(y)
}
// Add animatable size
, size: function(width, height) {
if (this.target() instanceof SVG.Text) {
// animate font size for Text elements
this.attr('font-size', width)
} else {
// animate bbox based size for all other elements
var box
if(!width || !height){
box = this.target().bbox()
}
if(!width){
width = box.width / box.height * height
}
if(!height){
height = box.height / box.width * width
}
this.add('width' , new SVG.Number().morph(width))
.add('height', new SVG.Number().morph(height))
}
return this
}
// Add animatable plot
, plot: function(p) {
return this.add('plot', this.target().array().morph(p))
}
// Add leading method
, leading: function(value) {
return this.target().leading ?
this.add('leading', new SVG.Number().morph(value)) :
this
}
// Add animatable viewbox
, viewbox: function(x, y, width, height) {
if (this.target() instanceof SVG.Container) {
this.add('viewbox', new SVG.ViewBox(x, y, width, height))
}
return this
}
, update: function(o) {
if (this.target() instanceof SVG.Stop) {
if (typeof o == 'number' || o instanceof SVG.Number) {
return this.update({
offset: arguments[0]
, color: arguments[1]
, opacity: arguments[2]
})
}
if (o.opacity != null) this.attr('stop-opacity', o.opacity)
if (o.color != null) this.attr('stop-color', o.color)
if (o.offset != null) this.attr('offset', o.offset)
}
return this
}
})
|