要使用Konva创建一个椭圆, 我们可以实例化一个Konva.Ellipse()对象.

有关属性和方法的完整列表,请参阅Konva.Ellipse文档

Konva Ellipse Demo 点击查看

<!DOCTYPE html>
<html>
<head>
 <script src="https://cdn.rawgit.com/konvajs/konva/1.4.0/konva.min.js"></script>
<meta charset="utf-8">
<title>Konva Ellipse Demo</title>
<style>
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #F0F0F0;
}
</style>
</head>
<body>
<div id="container"></div>
<script>
var width = window.innerWidth;
var height = window.innerHeight;

var stage = new Konva.Stage({
  container: 'container',
  width: width,
  height: height
});
var layer = new Konva.Layer();
var oval = new Konva.Ellipse({
    x: stage.getWidth() / 2,
    y: stage.getHeight() / 2,
    radius: {
        x: 100,
        y: 50
    },
    fill: 'yellow',
    stroke: 'black',
    strokeWidth: 4
});
// add the shape to the layer
layer.add(oval);
// add the layer to the stage
stage.add(layer);
</script>
</body>
</html>

results matching ""

    No results matching ""