I'm currently working on developing an engaging splash screen for my mobile application. To accomplish this, I need to utilize SVG, HTML, and CSS in order to align with the app's architecture.
The initial GIF represents the desired outcome that I am striving to achieve, while the second GIF showcases what I have managed to create so far.
My current obstacle involves creating a circular effect using <circle>
, which has proven to be quite challenging. Additionally, I am looking to implement zoom in/out animations on the text elements and ensure that the background color fills the entire screen seamlessly.
This is the code snippet that I've been working with:
@keyframes fill {
0% {
fill: white;
}
50% {
fill: black;
}
100% {
fill: white;
}
}
#jazztel {
fill: white;
animation-name: fill;
animation-duration: 5s;
}
@keyframes colorChange {
0% {
fill: #da1884;
}
...
</svg>