# hamfull-menu

> An hamburger-like menu, when you click over it the menu appears in fullwindow. No javascript libraries requested. Written in SASS.

Latest version **1.0.8** (published 2017-03-03) · GPL-3.0 license · 0 weekly downloads

## Install

```sh
npm install hamfull-menu
pnpm add hamfull-menu
yarn add hamfull-menu
bun add hamfull-menu
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.8 |
| Published | 2017-03-03 |
| First published | 2017-03-02 |
| Weekly downloads | 0 |
| License | GPL-3.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Davide Francesco Merico |
| Maintainers | neckersbox |
| Keywords | menu, hamburger, sass, css, fullwindow |

## Links

- npm: https://www.npmjs.com/package/hamfull-menu
- npm.io page: https://npm.io/package/hamfull-menu

## Alternatives

- [style-dictionary](https://npm.io/package/style-dictionary.md) — 2.0M weekly downloads
- [postcss-merge-idents](https://npm.io/package/postcss-merge-idents.md) — 1.7M weekly downloads
- [@fontsource/noto-sans](https://npm.io/package/@fontsource/noto-sans.md) — 93.0K weekly downloads
- [uglifycss](https://npm.io/package/uglifycss.md) — 71.6K weekly downloads
- [mat4-interpolate](https://npm.io/package/mat4-interpolate.md) — 23.3K weekly downloads

## Recent versions

- 1.0.8 (latest) — 2017-03-03
- 1.0.7 — 2017-03-02
- 1.0.5 — 2017-03-02

## README

# hamfull
---
An hamburger-like menu, when you click over it the menu appears in fullwindow. No javascript libraries requested. Written in SASS.

![Closed Preview](http://www.neckersbox.eu/share/images/hamfull-preview.png)

![Opened Preview](http://www.neckersbox.eu/share/images/hamfull-preview2.png)

## Demo & Examples
You can found a demo page in [this repository](https://github.com/NeckersBOX/hamfull-menu/blob/master/demo.html).

To get it locally:
```
git clone https://github.com/NeckersBOX/hamfull-menu
```
than open `demo.html` in your browser.

## Installation
There are three ways to get **hamfull**:
1. Clone this git repository and copy the minified css `hamfull.min.css` inside your project.
2. Configure the options inside `_config.scss` than do `gulp sass`.
3. With npm `npm install --save hamfull-menu`.

## Usage
First step, link to the css file.

```
<link rel="stylesheet" href="/path/to/hamfull.min.css" />
```

Next step, build your menu:
```
<input type="checkbox" id="hamfull-expand" />
<label class="hamfull" for="hamfull-expand">
  <i class="material-icons">menu</i>
  <ul>
    <li><a href="#">page..</a></li>
    <li><a href="#">page..</a></li>
    ...
  </ul>
</label>
```

The first `input` and the `label` tags were here for [this reason](http://stackoverflow.com/a/32721572). Instead of _material-icons_ you can use every library you want, the only important thing is to use always the `<i></i>` tag.

## Notes
To configure the style (color, animations duration, ...) see the `sass/_config.scss` file.

---
_Source: https://npm.io/package/hamfull-menu · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
