Last active
December 22, 2015 09:48
-
-
Save UltCombo/6454017 to your computer and use it in GitHub Desktop.
Revisions
-
UltCombo revised this gist
Sep 5, 2013 . 1 changed file with 12 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,16 @@ 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); }); }()); -
UltCombo created this gist
Sep 5, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ var $el = $('div'); (function loop() { $el.animate({ 'border-radius': '50%' }, 500, function() { $el.animate({ borderRadius: '0%' }, 500, loop); }); }());