Created
May 30, 2012 11:06
-
-
Save inossidabile/2835542 to your computer and use it in GitHub Desktop.
Joosy / Load, unload and 'in-progress' animations
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
# pages/application.js.coffee | |
class @ApplicationPage extends Joosy.Page | |
@beforePaint (container, complete) -> | |
#@layout.showSystemPreloader() if !@dataFetched | |
complete() | |
@paint (container, complete) -> | |
#@layout.hideSystemPreloader() | |
container.fadeTo 80, 0, => | |
complete().fadeTo 400, 1 | |
@erase (container, complete) -> | |
container.fadeTo 320, 0.2, => | |
complete() |
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
@scroll '.nagivation', margin: -1, speed: 300 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment