我有一个kineticjs阶段和一个在其中定义了Path对象的图层。我从来没有能够在画布上显示路径。由于某种原因,它看起来像canvas / stage不尊重父div的x和y坐标。这是什么解决方案? 我也尝试设置舞台和路径对象的x和y坐标,但没有运气。 这是我正在尝试的
var stage = new Kinetic.Stage({
container : id,
width : 105,
height : 165
});
var path = new Kinetic.Path({
data : "M176.0,463.0 L228.0,462.0 228.0,452.0 275.0,452.0 275.0,330.0 A40.0,0.0 0.0 1,1 254.0,295.0 L171.0,326.0 170.0,463.0z",
fill : 'rgba(100, 15, 56, 0.5)',
scale : 2,
x : 176,
y: 295
});
var layer = new Kinetic.Layer();
layer.add(path);
stage.add(layer);
请注意,我的路径geom从176,463开始。虽然父div位于正确的位置,但形状永远不会被绘制在这个div中。任何指针?
答案 0 :(得分:0)
KineticJS中的X和Y坐标是相对于舞台的,而不是父div的页面XY。
因此,您的路径绘图就在那里,它只是在舞台上的时间。
如果您将路径设置为适合舞台的比例和x / y,则可以看到此信息:
var path = new Kinetic.Path({
data : "M176.0,463.0 L228.0,462.0 228.0,452.0 275.0,452.0 275.0,330.0 A40.0,0.0 0.0 1,1 254.0,295.0 L171.0,326.0 170.0,463.0z",
fill : 'rgba(100, 15, 56, 0.5)',
scale : .25,
x : 5,
y: 5
});
这是代码和小提琴:http://jsfiddle.net/m1erickson/ZMDYy/
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Prototype</title>
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script src="http://d3lp1msu2r81bx.cloudfront.net/kjs/js/lib/kinetic-v4.5.4.min.js"></script>
<style>
#container{
border:solid 1px #ccc;
margin-top: 10px;
width:105px;
height:165px;
}
</style>
<script>
$(function(){
var stage = new Kinetic.Stage({
container: 'container',
width: 105,
height: 165
});
var layer = new Kinetic.Layer();
stage.add(layer);
var path = new Kinetic.Path({
data : "M176.0,463.0 L228.0,462.0 228.0,452.0 275.0,452.0 275.0,330.0 A40.0,0.0 0.0 1,1 254.0,295.0 L171.0,326.0 170.0,463.0z",
fill : 'rgba(100, 15, 56, 0.5)',
scale : .25,
x : 5,
y: 5
});
layer.add(path);
layer.draw();
}); // end $(function(){});
</script>
</head>
<body>
<div id="container"></div>
</body>
</html>