import Moveable from "lit-moveable"; import { LitElement, html } from "lit"; import { customElement, property } from "lit/decorators.js"; @customElement("lit-app") export default class App extends LitElement { render() { return html `

Pinch the target with two fingers on a touch-capable device.

Drag, Scale and Rotate are possible.

Target
`; } onRender(e) { e.target.style.cssText += e.cssText; } }