Open jrock2004 opened 4 years ago
@jrock2004 I'm actually building something similar, which transition did you end up with?
Here's what I'm using:
function * ({ insertedSprites, removedSprites }) {
insertedSprites.forEach(fadeIn);
removedSprites.forEach(fadeOut);
}
@aalimovs I ended up, just living with it. I started to play with the speed of the animation to minimize the look, but never came up with a good solution
So I have a div that has some text and a button to expand. When I click expand the animated container starts to grow in height and the new content scrolls down from the top. But the issues is, I want to height of the box to start growing once the text hits the bottom of the div? Is this possible?
If you need to see a more working example I can put one up