Skip to content

Instantly share code, notes, and snippets.

@apphp
Created December 18, 2020 10:03
Show Gist options
  • Save apphp/68786f4c743f7ee562e5a95072199674 to your computer and use it in GitHub Desktop.
Save apphp/68786f4c743f7ee562e5a95072199674 to your computer and use it in GitHub Desktop.
Creating Collapse Sliding Side Panel in CSS
<style type="text/css">
// source: https://www.apphp.com/index.php?snippet=css-collapsible-sliding-side-panel
// You may define side panel, that will slide whether on button click on on window size changing.
#sidepane{
display: block;
position: absolute;
transform: translateX(-100%);
transition: transform ease-out 0.2s;
}
#sidepane.fadeIn{
transform: translateX(0%);
transition: transform ease-out 0.3s;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment