Jump to content

Hide Image Sprite and Show (with door open/curtain like effect)


atta chaudhury
 Share

Recommended Posts

I have image in pixijs app. I need to hide it then show it with door open like effect (as seen in attached picture)

 

var pixiapp;
var pixiloader = PIXI.Loader.shared;
initpixiapp();

function initpixiapp() {
    pixiapp = new PIXI.Application({ width: 1280, height: 720 });
    document.getElementById('canvas-container').appendChild(pixiapp.view);
    pixiloader.add('images/img1.png').load(handleimagesload);
}
function handleimagesload() {
    var img1 = new PIXI.Sprite(pixiloader.resources['images/img1.png'].texture);
    pixiapp.stage.addChild(img1);
        

    // here will the the code to hide and show image in door open effect

    // var ticker = new PIXI.Ticker();
    // ticker.add(() => {
    //     
    // })
    //ticker.start()
}

 

ezgif.com-video-to-gif.gif

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...