Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pixelhijack/3646086f3375b103a481 to your computer and use it in GitHub Desktop.
Save pixelhijack/3646086f3375b103a481 to your computer and use it in GitHub Desktop.
/* delay-in: 0s, delay-out: 5s */
.flyout{
display: block;
position: fixed;
width: 200px;
height: 90%;
top:68px;
left:-180px;
-webkit-transition: all .4s 5s cubic-bezier(0.175, 0.885, 0.320, 1.275);
-moz-transition: all .4s 5s cubic-bezier(0.175, 0.885, 0.320, 1.275);
transition: all .4s 5s cubic-bezier(0.175, 0.885, 0.320, 1.275);
}
.flyout:hover{
left:-80px;
-webkit-transition: all .4s 0s cubic-bezier(0.175, 0.885, 0.320, 1.275);
-moz-transition: all .4s 0s cubic-bezier(0.175, 0.885, 0.320, 1.275);
transition: all .4s 0s cubic-bezier(0.175, 0.885, 0.320, 1.275);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment