Go to file
dalisoft c03e1b936b Update for performance, stability
* Performance improved at least 4 times faster now
* Stability & Responsiveness Improved
* Reduced lags for animation & load-execution time

* New demo :

* This demo requires `kute-css plug-in`
```html```
<div class="dv"></div>
<div class="dv"></div>
<div class="dv"></div>
```
```javascript
var tl = new KUTE.Timeline();
		tl.fromTo('.dv', { rotate : 0, left : 0 }, { rotate : 45, left : 200 }, { easing : 'easingBounceInOut', offset : { rotate : 200, left : 50 } })
		tl.to('.dv', { backgroundColor : 'rgb(255, 204, 0)' }, { easing : { backgroundColor : 'easingExponentialInOut'}, offset: 300 });
		tl.to('.dv', { top : 200 }, { easing : { top : 'easingElasticInOut' }, offset: 300, duration : 1000 });
		tl.to('.dv', { width : 45 }, { easing : { width : 'easingElasticInOut' }, offset: 200, duration : 1000 });
		tl.fromTo('.dv', { backgroundColor : 'rgb(255, 204, 0)' }, { backgroundColor : 'rgb(0, 204, 255)' }, { easing : { backgroundColor : 'linear'}, offset: 300 });
		tl.to('.dv', { height : 45 }, { easing : { height : 'easingElasticInOut' }, offset: 200, duration : 1000 });
		tl.fromTo('.dv', { rotate : 45 }, { rotate : 0 }, { easing : { rotate : 'easingExponentialInOut' }, offset : { rotate : 200 } })
		tl.fromTo('.dv', { width : 45, height : 45 }, { width : 100, height : 100 }, { easing : 'easingElasticInOut', offset : 200 })
		tl.fromTo('.dv', { left : 200, top : 200 }, { left : 0, top : 0 }, { easing : 'easingElasticInOut', offset : 200 })
		tl.start();
```
2016-03-25 16:11:43 +05:00
.gitignore Ignoring PKM files. 2015-11-01 21:55:45 +01:00
kute-bs.js 2016-03-16 16:28:07 +02:00
kute-effects.js Create kute-effects.js 2016-03-20 23:36:38 +05:00
kute-html.js Update kute-html.js 2016-03-19 22:13:39 +05:00
kute-matrix.js 2016-03-16 16:28:07 +02:00
kute-textticker.js Make TextTicker plug-in 2016-03-18 17:37:33 +05:00
kute-timeline.js Update for performance, stability 2016-03-25 16:11:43 +05:00
sequence.js Create sequence.js 2016-03-19 12:02:31 +05:00
timeline.html Create timeline.html 2016-03-25 11:42:05 +02:00