Skip to content

Commit

Permalink
Update version, min and read
Browse files Browse the repository at this point in the history
  • Loading branch information
krazyjakee committed Dec 10, 2014
1 parent b6e890c commit a882897
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,21 @@ $.keyframe.define([{

*Please note, you can add as many properties to the array as you want to*

**Responsive animations**
```javascript
$.keyframe.define([{
name: 'roll-clockwise',
media: 'screen and (max-width: 700px)',
from: {
'margin-left' : '0px'
},
to: {
'margin-left' : '600px'
}
}
]);
```

**Playing an animation**

The css3 animation methods available are better documented here: http://www.w3schools.com/css/css3_animations.asp
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jQueryKeyframes",
"version": "0.0.7",
"version": "0.0.8",
"homepage": "https://github.com/jQueryKeyframes/jQuery.Keyframes",
"license": "MIT",
"private": false,
Expand Down
2 changes: 1 addition & 1 deletion jquery.keyframes.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquerykeyframes",
"version": "0.0.7",
"version": "0.0.8",
"description": "jQuery-Keyframes allows dynamic generation of CSS3 keyframes with callback events and other niceness.",
"main": "jquery.keyframes.min.js",
"repository": {
Expand Down

0 comments on commit a882897

Please sign in to comment.