Skip to content

Instantly share code, notes, and snippets.

@UltCombo
Last active December 22, 2015 09:48
Show Gist options
  • Save UltCombo/6454017 to your computer and use it in GitHub Desktop.
Save UltCombo/6454017 to your computer and use it in GitHub Desktop.
var $el = $('div');
(function loop() {
$el.animate({
'border-top-left-radius': 100,
'border-top-right-radius': 100,
'border-bottom-left-radius': 100,
'border-bottom-right-radius': 100
}, 500, function() {
$el.animate({
borderTopLeftRadius: 0,
borderTopRightRadius: 0,
borderBottomLeftRadius: 0,
borderBottomRightRadius: 0
}, 500, loop);
});
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment