Skip to content

Commit

Permalink
putting sliding back in for fanciness
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscoyier committed Mar 31, 2011
1 parent db5c4e2 commit e53de6a
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions css/framework.css
Expand Up @@ -126,22 +126,19 @@ footer select {
/* Slide-y Stuff */
#content, h1 section {
opacity: 0;
/*left: -3500px;*/
left: -100%;
position: relative;
-webkit-transition: all 1.5s ease;
-webkit-transition-property: left, opacity;
-moz-transition: all 1.5s ease;
-moz-transition-property: left, opacity;
-o-transition: all 1.5s ease;
-o-transition-property: left, opacity;
}

.loaded #content, .loaded h1 section {
/*left: 0;*/
left: 0;
opacity: 1;
}

.leaving #content, .leaving h1 section {
/*left: 3500px;*/
left: 100%;
opacity: 0;
}

0 comments on commit e53de6a

Please sign in to comment.