1.1.8 • Published 2 years ago
auto-hide-hook v1.1.8
Auto Hide Hook
Description
This is a React hook that will hide mobile menu dropdown bar if you click, touch or scroll outside of the dropdown menu.
Usage
To use this hook you need to set a useRef to the element you want use as a reference and a setShow function to set the state of the element you want to hide. The hook will return a function that will hide the element when you click, touch or scroll outside of the element.
Install npm or yarn
npm i auto-hide-hook
or
yarn add auto-hide-hook
Import
import useAutoHide from 'auto-hide-hook';
Parameters
useAutoHide(ref, setShow);
Example
import React, { useRef, useState } from 'react';
import useAutoHide from 'auto-hide-hook';
const App = () => {
const [show, setShow] = useState(false);
const ref = useRef(null);
useAutoHide(ref, setShow);
return (
<div ref={ref}>
<div className={show ? 'show' : 'hide'}>Hello World</div>
<button onClick={() => setShow(!show)}>Toggle</button>
</div>
);
};
export default App;
CSS
.hide {
display: none;
}
.show {
display: block;
}
License
Author
Raul Jimenez
Website
1.1.8
2 years ago
1.1.7
2 years ago
1.1.6
2 years ago
1.1.5
2 years ago
1.1.4
2 years ago
1.1.3
2 years ago
1.1.2
2 years ago
1.1.1
2 years ago
1.1.0
2 years ago
1.0.10
2 years ago
1.0.9
2 years ago
1.0.8
2 years ago
1.0.7
3 years ago
1.0.6
3 years ago
1.0.5
3 years ago
1.0.4
3 years ago
1.0.3
3 years ago
1.0.2
3 years ago
1.0.1
3 years ago