Last active
December 29, 2015 12:08
-
-
Save cacheflowe/7668084 to your computer and use it in GitHub Desktop.
Revisions
-
cacheflowe revised this gist
Dec 16, 2013 . 1 changed file with 1 addition and 1 deletion.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 @@ -21,7 +21,7 @@ /* or even fancier with zoom (though this had problems on mobile - the layer captured swipes for scrolling) */ .hide-none -
cacheflowe revised this gist
Dec 16, 2013 . 1 changed file with 40 additions and 0 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 @@ -12,3 +12,43 @@ -webkit-transition: visibility 0s linear, opacity 0.4s linear opacity: 1 visibility: visible /* or even fancier with zoom */ .hide-none display: none .hide opacity: 0 visibility: hidden -webkit-transform: scale(0.9) -moz-transform: scale(0.9) transform: scale(0.9) // to be added to .hide after init .hide-ready -webkit-transition: visibility 0s linear 0.4s, opacity 0.4s linear, -webkit-transform 0.4s cubic-bezier(0.770, 0.000, 0.175, 1.000) -moz-transition: visibility 0s linear 0.4s, opacity 0.4s linear, -moz-transform 0.4s cubic-bezier(0.770, 0.000, 0.175, 1.000) transition: visibility 0s linear 0.4s, opacity 0.4s linear, transform 0.4s cubic-bezier(0.770, 0.000, 0.175, 1.000) .hide-ready.showing -webkit-transition: visibility 0s linear, opacity 0.4s linear, -webkit-transform 0.4s cubic-bezier(0.770, 0.000, 0.175, 1.000) -moz-transition: visibility 0s linear, opacity 0.4s linear, -moz-transform 0.4s cubic-bezier(0.770, 0.000, 0.175, 1.000) transition: visibility 0s linear, opacity 0.4s linear, transform 0.4s cubic-bezier(0.770, 0.000, 0.175, 1.000) opacity: 1 visibility: visible -webkit-transform: scale(1.0) -moz-transform: scale(1.0) transform: scale(1.0) -
cacheflowe created this gist
Nov 26, 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,14 @@ .hide opacity: 0 visibility: hidden // to be added to .hide after init .hide-ready transition: visibility 0s linear 0.4s, opacity 0.4s linear -webkit-transition: visibility 0s linear 0.4s, opacity 0.4s linear .hide-ready.showing transition: visibility 0s linear, opacity 0.4s linear -webkit-transition: visibility 0s linear, opacity 0.4s linear opacity: 1 visibility: visible