Commit graph

151 commits

Author SHA1 Message Date
thednp 3819cd0f3a NodeList isn't a good idea for the KUTE.selector utility, it's not workin in IE8.
Added a link in the documentation for a pathToAbslute utility for SVG morphing.
2016-09-12 17:09:09 +03:00
thednp ee713e86c4 Quick docs update 2016-09-07 19:09:41 +03:00
thednp a30eab2ff9 Fixed issue with text-plugin https://github.com/thednp/kute.js/issues/36
Improved overall performance https://github.com/thednp/kute.js/issues/34
Fixed some issues with SVG Plugin https://github.com/thednp/kute.js/issues/33
Documentation updates
2016-09-03 18:35:49 +03:00
thednp 3e1eb06d26 Update README.md 2016-08-22 17:26:14 +03:00
thednp 984fa6a5f1 Update bower.json 2016-08-22 17:24:36 +03:00
thednp f46e780271 Update package.json 2016-08-22 17:24:11 +03:00
thednp 645a0027b8 Fixed https://github.com/thednp/kute.js/issues/30
The script didn't handle polygon morphs when both shapes have same number of points.
2016-08-22 17:10:26 +03:00
thednp 67c441ccab https://github.com/thednp/kute.js/issues/32 2016-08-22 02:21:37 +03:00
thednp fa5d69ed3e * Added SVG Transforms for SVG Plugin
* Documentation/demo updates
2016-08-22 01:45:23 +03:00
thednp 362293626f Added support for stroking animation via draw for <ellipse>, some demo improvements. 2016-08-21 00:11:42 +03:00
thednp ef5da213c1 2016-08-20 16:46:16 +03:00
thednp 6c8b49ea8a Small demo improvements. 2016-08-20 16:44:53 +03:00
thednp f3414f6551 SVG Plugin added draw (stroke animations) support for additional elements: <line>, <circle>, <rect>, <polygon> and <polyline>.
https://github.com/thednp/kute.js/issues/28
2016-08-20 15:58:30 +03:00
thednp a514d71f61 2016-08-19 01:30:41 +03:00
thednp 571b96e2a9 2016-08-19 01:12:53 +03:00
thednp 4faa433429 Fixed Angular related issue with SVG Plugin.
https://github.com/thednp/kute.js/issues/29
2016-08-18 22:28:15 +03:00
thednp 7873233e39 Some documentation updates and social sharing fixes. 2016-08-17 23:40:42 +03:00
thednp 028ed99e64 Documentation updates, now we have cdnjs repository.
https://cdnjs.com/libraries/kute.js
2016-08-16 19:24:13 +03:00
thednp 10d47b89da Update bower.json 2016-07-25 18:38:49 +03:00
thednp 4fca28e269 Update package.json 2016-07-25 18:38:37 +03:00
thednp dc17bd3ed5 2016-03-28 16:07:31 +03:00
thednp 053a1bc2f9 Update kute-svg.min.js 2016-03-27 23:32:10 +03:00
thednp e33733f4f3 Added a codepen example for SVG, plus more SEO improvements. 2016-03-27 16:20:24 +03:00
thednp 92060dcaab Some SEO fixes. 2016-03-26 21:27:48 +02:00
thednp cb48bf3c90 Minor issue with opacity, scale. 2016-03-25 19:56:46 +02:00
thednp a1e983c8a2 Delete kute-timeline.js 2016-03-25 11:43:48 +02:00
thednp b24989dd71 Merge pull request #19 from dalisoft/patch-5
Create kute-timeline.js
2016-03-25 11:41:01 +02:00
dalisoft 63ab15de08 Create kute-timeline.js
```html

<!DOCTYPE html><html class=''>
<head>


<style class="cp-pen-styles">
.dv {
  width: 100px; height: 100px; float: left; 
  text-align: center; line-height: 100px; 
  margin: 20px 20px 20px 0;
  background: #0cf;
  position: relative;
}
</style>
</head><body>

<div class="dv"></div>
<div class="dv"></div>
<div class="dv"></div>
<div class="dv"></div>
<div class="dv"></div>


<script src='kute.js'></script>
<script src='kute-timeline.js'></script>
<script>

	var tl = new KUTE.Timeline();
		tl.fromTo('.dv', { rotate : 0 }, { rotate : 45 }, { easing : { rotate : 'easingBounceInOut' }, offset : { rotate : 200 } })
		tl.to('.dv', { left : 200 }, { easing : { left : 'easingElasticInOut'}, 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.to('.dv', { height : 45 }, { easing : { height : 'easingElasticInOut' }, offset: 200, duration : 1000 });
		
</script>
</body></html>
```
2016-03-25 14:19:32 +05:00
thednp 40fb142db5 Update README.md 2016-03-24 22:54:06 +02:00
thednp 01189cb038 Update README.md 2016-03-24 22:49:22 +02:00
thednp ba5a405627 Update README.md 2016-03-24 22:46:59 +02:00
thednp 688b036437 Update README.md 2016-03-24 22:45:53 +02:00
thednp ba21f97e34 Update README.md 2016-03-24 22:44:21 +02:00
thednp f4e58a5126 2016-03-24 14:49:42 +02:00
thednp 162803f6c8 2016-03-24 14:48:26 +02:00
thednp f4576d4bca Update package.json 2016-03-24 14:31:50 +02:00
thednp 7527628aef Update bower.json 2016-03-24 14:31:29 +02:00
thednp 6176a75fe1 Update package.json 2016-03-24 14:30:56 +02:00
thednp 5bbb709361 Update bower.json 2016-03-24 14:30:07 +02:00
thednp 2564472f53 Final version 1.5 commit. 2016-03-24 14:27:27 +02:00
thednp 97b6608392 Update README.md 2016-03-24 12:57:02 +02:00
thednp 92f8dcc338 Update README.md 2016-03-23 15:43:00 +02:00
thednp 49a418b24e Update README.md 2016-03-23 15:24:58 +02:00
thednp d24f73d811 Update README.md 2016-03-23 15:20:11 +02:00
thednp 35dc80161b minor IE8 demo fix 2016-03-19 10:08:34 +02:00
thednp 41e87cc4b2 2016-03-18 19:18:55 +02:00
thednp bf2574d082 Update README.md 2016-03-18 19:13:28 +02:00
thednp aa59078591 Added Text Plugin, updated docs 2016-03-18 16:23:23 +02:00
thednp 83ab68ad74 2016-03-17 16:54:13 +02:00
thednp afdfa1ae49 typo 2016-03-17 09:00:32 +02:00