I have a concept in mind where I want a clickable circle on the top left corner that expands to full page when clicked. Using a scale, I was able to achieve this effect.
.hover.opened {
transform: scale(1);
transition: all 0.5s ease-out;
overflow: hidden;
}
Now, my goal is to have the red circle's content already in place (without scaling) but not visible, and have the red circle expand to reveal the content. To better illustrate this idea, please see this image: https://i.sstatic.net/5HQd3.png The content remains at the correct scale and becomes visible only as the red circle grows.
How can this be achieved? Is it even possible? Your insights are appreciated. Thank you.