Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 920 Bytes

README.md

File metadata and controls

47 lines (31 loc) · 920 Bytes

Luna Dom Viewer

Dom tree navigator.

Demo

https://luna.liriliri.io/?path=/story/dom-viewer

Install

Add the following script and style to your page.

<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/luna-dom-viewer/luna-dom-viewer.css" />
<script src="//cdn.jsdelivr.net/npm/luna-dom-viewer/luna-dom-viewer.js"></script>

You can also get it on npm.

npm install luna-dom-viewer --save
import 'luna-dom-viewer/luna-dom-viewer.css'
import LunaDomViewer from 'luna-dom-viewer'

Usage

const container = document.getElementById('container')
const domViewer = new LunaDomViewer(container)
domViewer.expand()

Configuration

  • hotkey(boolean): Enable hotkey.
  • ignore(AnyFn): Predicate function which removes the matching child nodes.
  • node(ChildNode): Html element to navigate.

Api

select(node?: ChildNode): void

Select given node.