File size: 334 Bytes
0aebd1a
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
## 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();
```