Skip to content

Instantly share code, notes, and snippets.

View techird's full-sized avatar

techirdliu techird

  • Tencent, Inc
  • Shenzhen City, GuangDong, China.
View GitHub Profile
<!DOCTYPE html>
<html>
<head></head>
<body>Hello, world!</body>
</html>
@techird
techird / all.js
Last active December 26, 2015 21:09
var ns = 'http://www.w3.org/2000/svg',
svg = document.createElementNS(ns, 'svg'),
div = document.createElement('div');
document.body.appendChild(div);
div.appendChild(svg);
svg.setAttribute('width', 400);
svg.setAttribute('height', 300);
svg.style.background = '#eee';
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
</body>
</html>