svgdom
Version:
Straightforward DOM implementation for SVG, HTML and XML
10 lines (8 loc) • 355 B
JavaScript
import { SVGAnimatedLength } from './SVGAnimatedLength.js'
import { SVGGraphicsElement } from './SVGGraphicsElement.js'
export class SVGImageElement extends SVGGraphicsElement {
x = new SVGAnimatedLength(this, 'x')
y = new SVGAnimatedLength(this, 'y')
width = new SVGAnimatedLength(this, 'width')
height = new SVGAnimatedLength(this, 'height')
}