driver.js / README.md
kamrify's picture
Add docs and allow modifying padding
0aebd1a
|
raw
history blame
334 Bytes
## spotlight-js
> Allows highlighting any element, adding feature introduction, adding hints
## Highlighting Single Elements
```javascript
const spotlight = new Spotlight({
opacity: 0.7, // opacity for the background
padding: 5, // padding around the element
});
spotlight.highlight('#some-element');
spotlight.clear();
```