0

誰かが私を助けてもらえますか?

ステージと画像があり、入力から幅と高さを変更したい。これはコードであり、機能しません:/助けてください。)

var stage = new Kinetic.Stage({container:'containerCreator'、width:imageWidth、height: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);  

});

4

1 に答える 1

0

これを次のように変更します。

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

});
于 2013-02-05T02:54:41.407 に答える