Skip to content
This repository was archived by the owner on Sep 15, 2025. It is now read-only.

Commit 73a21bf

Browse files
committed
Update README.md
1 parent e429563 commit 73a21bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Super simple example:
1313
var rules = $.keyframe.bezierPath( { name: 'curvy' } , [1,1], [400,1], [200,300] );
1414
$.keyframe.define([rules]);
1515
$(window).load(function(){
16-
$('.block').playKeyframe('curvey 5000 ease 0 1 normal forwards');
16+
$('.block').playKeyframe('curvey 5s ease 0 1 normal forwards');
1717
});
1818
```
1919

@@ -28,7 +28,7 @@ Simple example:
2828
var rules = $.keyframe.bezierPath( { name: 'curvyplus' }, [1,100], [800,100], [400,-100], [50, 600]);
2929
$.keyframe.define([rules]);
3030
$(window).load(function()
31-
$('.block').playKeyframe('curveyplus 5000 ease 0 1 normal forwards');
31+
$('.block').playKeyframe('curveyplus 5s ease 0 1');
3232
});
3333
```
3434

@@ -42,7 +42,7 @@ Simple Example:
4242
var rules = $.keyframe.circlePath( { name: 'circular' }, [100, 100], 40);
4343
$.keyframe.define([rules]);
4444
$(window).load(function()
45-
$('.block').playKeyframe('circular 5000 linear 0 infinite normal forwards');
45+
$('.block').playKeyframe('circular 5s linear 0 infinite');
4646
});
4747
```
4848

0 commit comments

Comments
 (0)