Created
May 6, 2013 18:43
-
-
Save jzimdars/5527160 to your computer and use it in GitHub Desktop.
CSS transitions via jQuery
This file contains 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 characters
resizeDialogToSheet = (callback) -> | |
setTimeout -> | |
$("#new_project_dialog > article.new").transition | |
width: 900, | |
height: 900, | |
margin: "90px auto" | |
, | |
duration: 600, | |
timing: "ease-in-out", | |
complete: callback | |
, 200 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment