现在我正在玩KonvaJS。我在click
上设置了shape
事件监听器。当我单击shape
时,将调用侦听器。在我的监听器中,我正在调用event.preventDefault()
方法来停止触发其他事件。但是当我这样做时它会说Uncaught TypeError: event.preventDefault is not a function
。我不知道自己错过了什么。这是我的code:
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.rawgit.com/konvajs/konva/0.9.5/konva.min.js"></script>
<meta charset="utf-8">
<title>Konva Scale Animation 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();
stage.add(layer);
var gArrow2 = new Image();
var circle2 = new Konva.Image({
x: 60, //on canvas
y: 60,
image: gArrow2,
name: 'abc',
id: 'xyz',
draggable:true
});
circle2.on('click',function(event){
event.preventDefault()
console.log(e.type);
});
circle2.on('mouseup',function(event){
event.preventDefault()
console.log(e.type);
});
gArrow2.onload = function() {
layer.add(circle2);
layer.draw();
}
gArrow2.src = 'http://konvajs.github.io/assets/snake.png';
var period = 1500;
var amplitude = 10;
var centerX = stage.getWidth() / 2;
var centerY = stage.getHeight() / 2;
var anim = new Konva.Animation(function(frame) {
circle2.setY(amplitude * Math.sin(frame.time * 2 * Math.PI / period) + centerY);
}, layer);
anim.start();
</script>
</body>
</html>
答案 0 :(得分:5)
似乎KonvaJS的on
处理程序不会直接向您提供浏览器事件,而是一个看起来像的对象。
浏览器的原始事件存储在evt
属性中。
在您的代码中,尝试将event.preventDefault()
替换为event.evt.preventDefault()
:http://plnkr.co/edit/tCESd42r67TzeuLiISxU。
答案 1 :(得分:0)
如果您不希望触发其他活动,则KonvaJS
会为cancelBubble
设置一个名为event
的媒体资源,您可以将其设置为true
。通过使用这个不需要寻找event.preventDefault()
函数。这是要展示的plunkr。
triangle.on('mouseup', function(e) {
e.cancelBubble = true;
console.log('Triangle mouse up');
});