Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

It's worked : http://jsfiddle.net/qYYm5/

I discover recently Kinetic.js from here : http://www.kineticjs.com/ I try to make that, but nothing is working... This code should draw an image "iPhoneBg.jpg" on the layer "background_layer", Needless to say that my image exist.

<!DOCTYPE HTML>
<html>
  <head>
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.0.min.js"></script>
    <script src="Kinetic.min.js"></script>
    <style>
      body {
        margin: 0px;
        padding: 0px;
      }
    </style>
    <script>
        window.onload = function() {
            //INITIALISATION
            var stage = new Kinetic.Stage({
                container: "iPhone",
                width: 480,
                height: 720
            });
            //LAYERS
            var background_layer = new Kinetic.Layer();
            var sms_layer = new Kinetic.Layer();
            var text_layer = new Kinetic.Layer();
            //ELEMENTS
            var iPhoneBg_image = new Kinetic.Image({
                image: 'iPhoneBg.jpg'
            });
            //DRAWING
            background_layer.add(iPhoneBg_image);
            stage.add(background_layer);
        };

    </script>
  </head>
  <body>
    <canvas id="iPhone" width="480" height="720"></canvas>
  </body>
</html>

What is the problem ? Thanks !

share|improve this question

1 Answer

up vote 1 down vote accepted

window.onload = function() { //INITIALISATION var stage = new Kinetic.Stage({ container: "iPhone", width: 480, height: 720 }); //LAYERS var background_layer = new Kinetic.Layer(); var sms_layer = new Kinetic.Layer(); var text_layer = new Kinetic.Layer(); //ELEMENTS var imageObj = new Image(); imageObj.onload = function() { var iPhoneBg_image = new Kinetic.Image({ image: imageObj }); //DRAWING background_layer.add(iPhoneBg_image); stage.add(background_layer); } imageObj.src = "iPhoneBg.jpg"; }; <body><div id="iPhone"></div></body>
share|improve this answer
not working too :( – RochesterFox Aug 14 '12 at 16:01
Use "<div id="iPhone"></div>" instead "<canvas id="iPhone" width="480" height="720"></canvas> " in Body Tag – Palani Kumar Aug 14 '12 at 16:02
Oh sorry i don't saw this correction, thanks very much for you help ! – RochesterFox Aug 14 '12 at 16:05
Refer this url: http://jsfiddle.net/qYYm5/ – Palani Kumar Aug 14 '12 at 16:26
ok, and i had another question if you can awswer : stackoverflow.com/questions/11957042/… – RochesterFox Aug 14 '12 at 16:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.