-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jonnie Spratley
committed
Nov 22, 2013
1 parent
8a4ac21
commit 82ba94b
Showing
22 changed files
with
9,634 additions
and
1,937 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
9894 | ||
832 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
.reveal { | ||
-webkit-transition:1s linear all; | ||
-moz-transition:1s linear all; | ||
-o-transition:1s linear all; | ||
transition:1s linear all; | ||
|
||
opacity:0; | ||
} | ||
.reveal.reveal-active { | ||
opacity:1; | ||
} | ||
|
||
.slide-reveal { | ||
-webkit-transition:0.5s linear all; | ||
-moz-transition:0.5s linear all; | ||
-o-transition:0.5s linear all; | ||
transition:0.5s linear all; | ||
opacity:0.5; | ||
|
||
position:relative; | ||
opacity:0; | ||
top:10px; | ||
} | ||
.slide-reveal.slide-reveal-active { | ||
top:0; | ||
opacity:1; | ||
} | ||
|
||
.expand-enter { | ||
-webkit-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; | ||
-moz-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; | ||
-o-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; | ||
transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; | ||
|
||
opacity:0; | ||
max-height:0; | ||
overflow:hidden; | ||
} | ||
.expand-enter.expand-enter-active { | ||
opacity:1; | ||
max-height:40px; | ||
} | ||
|
||
.expand-leave { | ||
-webkit-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; | ||
-moz-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; | ||
-o-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; | ||
transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all; | ||
|
||
opacity:1; | ||
max-height:40px; | ||
overflow:hidden; | ||
} | ||
.expand-leave.expand-leave-active { | ||
opacity:0; | ||
max-height:0; | ||
} | ||
|
||
.example-animate-container { | ||
position:relative; | ||
background:white; | ||
border:1px solid black; | ||
height:40px; | ||
overflow:hidden; | ||
} | ||
|
||
.example-animate-container > div { | ||
padding:1em; | ||
} | ||
|
||
.animator-container.animations-off * { | ||
-webkit-transition: none; | ||
-moz-transition: none; | ||
-o-transition: color 0 ease-in; /* opera is special :) */ | ||
transition: none; | ||
} |
Oops, something went wrong.