Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

CSS help for jumpy transitions

Hi gang. I'm trying to use one of Leon's image-bearing CSS templates and I'm having some weird issues with it: namely, the passage position jumps around after loading. Take a look:

http://inurashii.xyz/doors/doors.html

Here's the .tws file:
http://inurashii.xyz/doors/doors.tws

Can anyone help me? This game is gonna be all about aesthetic, so holding my nose and leaving it as is doesn't work for me.  I could try a different format, but I'd want to be sure that it would work.

Comments

  • YAY! A friend helped me solve this problem, and I wanted to share the solution because ppl might find it helpful.

    The trouble with the transitions is that with a relative passage position, the new passage was getting displaced by the old one. I fixed it by stuffing
    [quote]position:absolute;
      left:0;
      right:0;
    into the .passage div so that the passage is no longer relative in position but is still centered.
Sign In or Register to comment.