Jump to content

how to move a container smoothly by pressing a button


z.z.hwang
 Share

Recommended Posts

Guys, how can i move a container smoothly.   i had tried to move it with TweenMax, but unsatisfied  . here is a part of my codes for reading(without TweenMax).

      forwardButton
        .on("touchstart", e => {
          let arg = 10,
            move = 0;

          this.timer = setInterval(() => {
            this.scenesStage.x += arg
          }, 200);
        })
        .on("touchend", e => {
          clearInterval(this.timer);
         
       })

 

And here is the codes (with TweenMax)

    forwardButton
        .on("touchstart", e => {
          let arg = 10,
            move = 0;

          this.timer = setInterval(() => {
            TweenMax.to(this.scenesStage,1,{x: `+=${-(arg + 40)}`})
          }, 200);
        })
        .on("touchend", e => {
          clearInterval(this.timer);
         
       })

to hope your help. 

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...