Originally I had
targetWater.animate({
"width": "+=100%"
Now I want to dynamically use "width" or "height"
var direction = (targetWater.hasClass('x'))? "width" : "height";
targetWater.animate({
direction: "+=100%"
But this doesn't work.
I've tried
direction.toString()
and
''+direction+''
No joy with this either
var anim = { direction: "+=100%" }
targetWater.animate(anim,
Your approach doesn't work since direction
is interpreted as a key, not a variable.
You can do it like so:
var animation = {};
var direction = targetWater.hasClass('x') ? "width" : "height"
animation[direction] = "+=100%";
targetWater.animate(animation);
The square brackets make it so you can have the key dynamically.
If you would want the key "direction"
with the square bracket notation you would write:
animation["direction"];
which is equivalent to:
animation.direction;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With