You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
snabbdom/examples/svg/script.js

18 lines
500 B
JavaScript

var snabbdom = require('../../snabbdom.js');
var patch = snabbdom.init([
require('../../modules/attributes'),
]);
var h = require('../../h.js');
var vnode;
window.addEventListener('DOMContentLoaded', () => {
var container = document.getElementById('container');
var vnode = h('div', [
h('svg', {attrs: {width: 100, height: 100}}, [
h('circle', {attrs: {cx: 50, cy: 50, r: 40, stroke: 'green', 'stroke-width': 4, fill: 'yellow'}})
])
]);
vnode = patch(container, vnode);
});