Skip to content

Instantly share code, notes, and snippets.

@khripunovpp
Created April 22, 2019 13:53
Show Gist options
  • Save khripunovpp/1e2a58e9c23cc40eb4acf70cc05a023b to your computer and use it in GitHub Desktop.
Save khripunovpp/1e2a58e9c23cc40eb4acf70cc05a023b to your computer and use it in GitHub Desktop.
animate jq
var a = $('.test');
$({scale: 1}).animate({
scale: 2
}, {
duration: 2000,
step: function(now, fx) {
a.css('transform', 'scale(' + now + ')')
}
}, 'linear');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment