diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2007-02-27 21:44:57 +0000 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2007-02-27 21:44:57 +0000 |
commit | 0d9920083bb2ed441bfbedd35107abf58216d9ff (patch) | |
tree | 35d1cc8d154bb001ebeeadf5f9aaba2908743b52 /src | |
parent | 92417f694a5c66cda477bf33e1c2d3ce0765e05f (diff) | |
download | jquery-0d9920083bb2ed441bfbedd35107abf58216d9ff.tar.gz jquery-0d9920083bb2ed441bfbedd35107abf58216d9ff.zip |
Backported wiki changes from http://docs.jquery.com/API/1.1.1/Effects
Diffstat (limited to 'src')
-rw-r--r-- | src/fx/fx.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/fx/fx.js b/src/fx/fx.js index f20cc468f..a16b0a51b 100644 --- a/src/fx/fx.js +++ b/src/fx/fx.js @@ -279,15 +279,18 @@ jQuery.fn.extend({ }, /** - * A function for making your own, custom, animations. The key aspect of + * A function for making your own, custom animations. The key aspect of * this function is the object of style properties that will be animated, * and to what end. Each key within the object represents a style property * that will also be animated (for example: "height", "top", or "opacity"). * + * Note that properties should be specified using camel case + * eg. marginLeft instead of margin-left. + * * The value associated with the key represents to what end the property * will be animated. If a number is provided as the value, then the style * property will be transitioned from its current state to that new number. - * Oterwise if the string "hide", "show", or "toggle" is provided, a default + * Otherwise if the string "hide", "show", or "toggle" is provided, a default * animation will be constructed for that property. * * @example $("p").animate({ |