https://github.com/jonathanong/delegated-dropdown
mobile-first delegated dropdown menus with smart positioning
https://github.com/jonathanong/delegated-dropdown
Last synced: 2 months ago
JSON representation
mobile-first delegated dropdown menus with smart positioning
- Host: GitHub
- URL: https://github.com/jonathanong/delegated-dropdown
- Owner: jonathanong
- Created: 2014-02-20T00:17:32.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-04T02:12:30.000Z (about 11 years ago)
- Last Synced: 2025-02-12T20:21:34.489Z (4 months ago)
- Language: JavaScript
- Size: 180 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Delegated Dropdown
Mobile-first delegated dropdown menus with smart positioning.
- Handles tap events
- Opens the dropdowns either up or down
- Justifies the content either to the left or the right of the parent
- `esc` closes all dropdowns
- Only one dropdown menu open at a timeCaveats:
- You may need to set `overflow: hidden`
- You need to handle `:hover` states yourself## API
```jade
.Dropdown(.open)(.up)(.down)(.left)(.right)
.Dropdown-toggle
.Dropdown-menu
.Dropdown-item
```
View [index.css](https://github.com/jonathanong/delegated-dropdown/blob/master/lib/index.css) for the HTML structure.```js
var dropdown = require('delegated-dropdown')
```Note that these methods are completely optional.
### dropdown.on(event)
Dropdown is an emitter. The events are:
- `open ` - when a dropdown is opened
- `close ` - when a dropdown is closed### dropdown.position(el)
Positions a `.Dropdown` element.
If you do not position your dropdowns, you probably want to set `overflow: hidden` to prevent any accidental scroll bars.
### dropdown.open(el)
### dropdown.close(el)
### dropdown.clear()
Clears all dropdown menus.
## License
The MIT License (MIT)
Copyright (c) 2014 Jonathan Ong [email protected]
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.