扫一扫分享
GraphicsJS 一个新的强大的开源JavaScript绘图库,它基于SVG(对于旧的IE版本使用 VML 回退)。 我将首先简要介绍其基础知识,然后通过两个简短而又精彩的示例来展示该库的功能:第一个是关于艺术,第二个说明如何使用不到50行代码编写一个简单的时间 - 杀手艺术游戏。GraphicsJS是轻量级的,并有一个非常灵活的JavaScript api。 它实现了许多富文本功能,以及一个虚拟dom - 并从浏览器特定的html DOM实现中分离出来。
使用
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<script src="https://cdn.anychart.com/releases/v8/js/graphics.min.js"></script>
</head>
<body>
<div id="stage-container" style="width: 400px; height: 375px;"></div>
<script>
// create a stage for the Deathly Hallows symbol
stage = acgraph.create('stage-container');
// draw the square
stage.rect(5, 5, 350, 300);
// draw the circle
stage.circle(177.5, 205, 100);
// draw the triangle
stage.path()
.moveTo(5, 305)
.lineTo(175, 5)
.lineTo(355, 305);
// draw the wand in the middle
stage.path()
.moveTo(175, 5)
.lineTo(175, 305);
</script>
</body>
</html>
手机预览