从输入改变宽度阶段

时间:2013-02-04 22:25:45

标签: kineticjs

有人可以帮助我吗?

我有一个舞台和图像,我想从输入改变宽度和高度。 这是代码,它不起作用:/帮我。)

var stage = new Kinetic.Stage({     容器:'containerCreator',     width:imageWidth,     身高:imageHeight     });

var layer = new Kinetic.Layer();

var imageObj = new Image();
imageObj.onload = function(){
  var yoda = new Kinetic.Image({
    x: 0,
    y: 0,
    image: imageObj,
    width: imageWidth,
    height: imageHeight
  });



  layer.add(yoda);
  layer.add(vrchnyText);
  stage.add(layer);  

  };
  imageObj.src = imageSource;

  $('#vrchCreator').keyup(function(){

    stage.width = $(this).val();        
    stage.height= $(this).val();    
    layer.add(yoda);
    stage.add(layer);  

});

1 个答案:

答案 0 :(得分:0)

您想将其更改为:

$('#vrchCreator').keyup(function()
{ 
   stage.setWidth(parseInt($(this).val()));
   stage.setHeight(parseInt($(this).val()));
   layer.add(yoda);
   stage.add(layer);  

});