Skip to content

Commit a882897

Browse files
committed
Update version, min and read
1 parent b6e890c commit a882897

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,21 @@ $.keyframe.define([{
130130

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

133+
**Responsive animations**
134+
```javascript
135+
$.keyframe.define([{
136+
name: 'roll-clockwise',
137+
media: 'screen and (max-width: 700px)',
138+
from: {
139+
'margin-left' : '0px'
140+
},
141+
to: {
142+
'margin-left' : '600px'
143+
}
144+
}
145+
]);
146+
```
147+
133148
**Playing an animation**
134149

135150
The css3 animation methods available are better documented here: http://www.w3schools.com/css/css3_animations.asp

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jQueryKeyframes",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"homepage": "https://github.com/jQueryKeyframes/jQuery.Keyframes",
55
"license": "MIT",
66
"private": false,

jquery.keyframes.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquerykeyframes",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"description": "jQuery-Keyframes allows dynamic generation of CSS3 keyframes with callback events and other niceness.",
55
"main": "jquery.keyframes.min.js",
66
"repository": {

0 commit comments

Comments
 (0)