Commit graph

157 commits

Author SHA1 Message Date
thednp
bdf64d6b01 Move jquery plugni to experiments branch 2019-02-01 11:45:17 +02:00
thednp
4143cacb4a
Rename kute.jquery.js to kute-jquery.js 2019-02-01 11:36:41 +02:00
thednp
5b1f2e03bd
Create kute.jquery.js 2019-02-01 11:36:16 +02:00
thednp
90a2a55f74 ES6 by @dalisoft
https://github.com/thednp/kute.js/pull/52
2017-01-27 20:20:21 +02:00
thednp
2bbdbd833f coffeeScript.js by @dalisoft
Added https://github.com/thednp/kute.js/pull/53
2017-01-27 20:19:05 +02:00
thednp
1c200fcbf7 Deleted timeline scrips, they won't work with KUTE.js 1.6.0 will have to be developed later from scratch 2016-12-10 15:25:24 +02:00
thednp
f46fcf68fd Changes:
* removed CSS props from SVG plugins
* improved CSS transform performance by creating a more simple tween object
* improved radius properties performance 
* removed Bezier and Physics plugins
* fixes scroll animation performance bottlenecks
* code cleanup and a more readable code
* documentation updates
2016-11-23 20:42:01 +02:00
thednp
01e0ed5a27 Merge pull request #20 from dalisoft/patch-6
Update for performance, stability
2016-03-25 13:14:17 +02:00
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
thednp
7c1eba4825 Create kute-timeline.js 2016-03-25 11:43:02 +02:00
thednp
a7f453557b Create timeline.html 2016-03-25 11:42:05 +02:00
thednp
6a5b4ab616 Merge pull request #18 from dalisoft/patch-4
Create kute-effects.js, some improvements will be required.
2016-03-20 21:49:28 +02:00
dalisoft
6da16d3349 Create kute-effects.js
```javascript
KUTE.to('#id', { effect : 'ScaleOut' }).start();
```
2016-03-20 23:36:38 +05:00
thednp
eca5553017 Merge pull request #17 from dalisoft/patch-3
Create kute-html.js
2016-03-19 19:30:50 +02:00
dalisoft
b3daedbfaf Update kute-html.js 2016-03-19 22:13:39 +05:00
dalisoft
41f44607c9 Create kute-html.js 2016-03-19 22:10:30 +05:00
thednp
e11f1b584f Merge pull request #16 from dalisoft/patch-2
Sequence.js
2016-03-19 09:19:11 +02:00
dalisoft
3e9744f053 Create sequence.js 2016-03-19 12:02:31 +05:00
thednp
7acd2779ea Delete kute-text.js 2016-03-18 15:27:56 +02:00
thednp
e12cff422c Merge pull request #15 from dalisoft/patch-1
Make TextTicker plug-in
2016-03-18 15:26:10 +02:00
dalisoft
468f3e258b Make TextTicker plug-in
Demo as "text" plugin
2016-03-18 17:37:33 +05:00
thednp
b8891c4a59 Merge pull request #14 from dalisoft/experiments
Text character tweening
2016-03-17 00:04:00 +02:00
dalisoft
c25970914a Create kute-text.js 2016-03-16 21:58:54 +05:00
thednp
1e060621f3 2016-03-16 16:28:07 +02:00
thednp
074cf20c38 Delete loader.gif 2016-03-15 10:16:41 +02:00
thednp
ecc61cddce Delete img-blank.gif 2016-03-15 10:16:34 +02:00
thednp
aadbb8c8aa Delete favicon.png 2016-03-15 10:16:28 +02:00
thednp
cc6c9a5c8d Delete scripts.js 2016-03-15 10:16:22 +02:00
thednp
a21543688b Delete prism.js 2016-03-15 10:16:12 +02:00
thednp
f14d3a6bec Delete perf.js 2016-03-15 10:16:06 +02:00
thednp
f813789274 Delete tween.min.js 2016-03-15 10:15:59 +02:00
thednp
77ad033c75 Delete minifill.js 2016-03-15 10:15:50 +02:00
thednp
394f03c5f0 Delete home.js 2016-03-15 10:15:42 +02:00
thednp
542d4ac81d Delete examples.js 2016-03-15 10:15:34 +02:00
thednp
e9f5cad36f Delete reset.css 2016-03-15 10:15:25 +02:00
thednp
25c9abcc22 Delete prism.css 2016-03-15 10:15:17 +02:00
thednp
2301333ad6 Delete kute.css 2016-03-15 10:15:09 +02:00
thednp
7969ba41d2 Delete kute-physics.js 2016-03-15 10:15:00 +02:00
thednp
52f7c628a7 Delete kute-jquery.js 2016-03-15 10:14:53 +02:00
thednp
d310abc01c Delete kute.js 2016-03-15 10:14:43 +02:00
thednp
0e909494a2 Delete kute-bezier.js 2016-03-15 10:14:32 +02:00
thednp
7ff51a083c Delete about.html 2016-03-15 10:14:24 +02:00
thednp
ccdd4be902 Delete api.html 2016-03-15 10:14:17 +02:00
thednp
f4b74e49a5 Delete examples.html 2016-03-15 10:14:08 +02:00
thednp
7e00d4e099 Delete features.html 2016-03-15 10:13:57 +02:00
thednp
345939fbae Delete index.html 2016-03-15 10:13:49 +02:00
thednp
56074c9276 Delete performance.html 2016-03-15 10:13:42 +02:00
thednp
a4dbdf831f Delete kute.min.js 2016-03-15 10:13:27 +02:00
thednp
3d51517c3c Delete kute-physics.min.js 2016-03-15 10:13:22 +02:00
thednp
441a9f03e2 Delete kute-jquery.min.js 2016-03-15 10:13:17 +02:00