Created
January 6, 2013 20:57
-
-
Save koenbok/4470148 to your computer and use it in GitHub Desktop.
Bounce every view!
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 characters
| // Bounce every view that you click on | |
| View.Views.map(function(view) { | |
| view.on("click", function(e) { | |
| e.stopPropagation() | |
| view.animateStop() | |
| view.scale = 0.5 | |
| view.animate({ | |
| properties:{scale:1.0}, | |
| curve: "spring(100,3,500)" | |
| }) | |
| }) | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment