Twine Version: 2.3.15
Story Format: SugarCube 2.34.1
The only way I know to add a background-image for a passage is to do so in the stylesheet, but I can’t find a way to incorporate conditional statements (or something similar) in these. Basically, what I want is for the background of a passage to be different depending on the time of day, or any other variable. I don’t want to create a separate passage just so I can have a different background for it.
So, a way to add a background-image in the passage code itself would allow the background to change depending on an <> statement. Alternatively, doing it in the stylesheet might be more practical. Any solution would be greatly appreciated.
Thank you, that works perfectly and answers my question. But is it possible to do this with this stylesheet? I’m not sure how to refer to it in the <> and I’m also not sure if it would work given that the blur effect needs to happen before anything else.
If you are storing the name of one of the associated CSS classes (eg. “day” or “night”) within the $time variable then there is no need for the set of <<if>> macro calls.
Instead you would use the <<removeclass>> macro to first remove all of the associated CSS classes from the target element, and then add back the current value of the variable.
And because you potentially want this for each Passage Transition you may want to add the above coded to a either a PassageReady or PassageDone special Passage.