Hi,
I'm trying to make my Twine so that every transition is a dissolve. There are a lot of pages that have a similar header/footer and only the text in the centre changes, so I was thinking if I could get the pages to cross-fade, it would give the illusion that the header/footer text was remaining there while the central body of text faded in and out. I've cobbled together the following but the out animation seems to just be cut-short by the in rather than creating the type of crossfade I would normally associate with a "dissolve". Anyone know what I need for a pure "dissolve" effect between two scenes?
.transition-out[data-t8n^=dissolve] {
-webkit-animation:disappear 4000ms;
animation:disappear 4000ms
}
.transition-in[data-t8n^=dissolve] {
-webkit-animation:appear 2000ms;
animation:appear 2000ms
Comments
How about this:
(From @L )
The game is already quite code-heavy in each scene so I want to stick to doing it in the stylesheet if at all possible. Thanks anyway.