side-drawer
A simple side drawer written as HTML custom element
side-drawer
A simple, animating side drawer built as a Web Component
Demo
Installation
You can integrate side-drawer via <script>
tag or via NPM.
Via <script>
tag
In the <head>
of your index.html put a script tag like this:
<script
type="module"
src="https://unpkg.com/side-drawer/dist/esm/side-drawer.min.js"
></script>
<script
nomodule
src="https://unpkg.com/side-drawer/dist/iife/side-drawer.min.js"
></script>
Now you can use the side-drawer
element anywhere in your html, JSX, template, etc.
Via NPM
npm install side-drawer --save
And then you need to import the module before you can use it in your html/jsx/template:
import "side-drawer";
Web Component Browser Support
This web component uses HTML templates, the shadow DOM, and custom elements. If you need to polyfill for any of these standards then take a look at the web components polyfill.
API and Customization
Attributes/Properties
open
- Add this attribute to open the drawer.
- Example:
<side-drawer open></side-drawer>
- Example:
- Set the property in Javascript to imperatively toggle the drawer
- Example:
drawer.open = true
- Example:
- In (p)react you might need to set undefined in your JSX (since false !== undefined for html attribute existence)
- Example:
<side-drawer open={this.state.isDrawerOpen || undefined}></side-drawer>
- Example:
- Add this attribute to open the drawer.
Events
open
- Raised when the drawer is opened.
- Example:
drawer.addEventListener("open", handleOpen())
- When subscribing in html listen for
onopen
- Ex:
<side-drawer onopen="handleOpen()">
- Ex:
close
-Raised when the drawer is closed.- Example:
drawer.addEventListener("close", handleClose())
- When subscribing in html listen for
onclose
- Ex:
<side-drawer onclose="handleClose()">
- Ex:
- Example:
Styling
You can style the side-drawer element as you would any regular element, in CSS. A list of supported CSS properties are below, along with the default values.
side-drawer {
background-color: #ffffff;
color: inherit;
width: 350px;
max-width: 75vw;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
You can customize the overlay that appears to the right of the drawer (when it's open) by setting one of the following CSS variables.
--side-drawer-overlay-transition
- Sets the transition
- Default is
opacity 0.25s ease-in-out 0.25s
--side-drawer-overlay-opacity
- Sets the opacity of the overlay
- Default is
0.7
Contribute
This project is built with standard HTML/CSS/TS, no frameworks or special web-component compilers here (for maximum simplicity and minimum size). If you want to learn more about writing custom elements see MDN or this web fundamentals page.
npm install
npm start
This will start a live-server on port localhost:8080. Any changes you make to files in lib/ or any changes to example/index.html should get live reloaded.
Links
Compatibility
Was this helpful? Need more help?
Leave a comment or a question below. You can also join
the chat on Discord or
ask questions on StackOverflow.
Version
Dependencies
- Released
- 2019-04-29
- Maturity
- IMPORTED
- License
- MIT License
Compatibility
- Framework
- Browser
- Browser Independent
side-drawer - Vaadin Add-on Directory
A simple side drawer written as HTML custom elementView on GitHub
side-drawer version 1.0.0
### Dependencies
side-drawer version 1.1.0
### Dependencies
side-drawer version 1.2.0
### Dependencies
side-drawer version 2.0.0
### Dependencies
side-drawer version 2.0.1
### Dependencies
side-drawer version 2.0.2
### Dependencies
side-drawer version 2.1.0
### Dependencies
side-drawer version 2.1.1
### Dependencies
side-drawer version 2.2.0
### Dependencies