Can we you use a background screen where motion of fire cracker is being displayed in the background along with the main content? Please do let me know as I want that kind of background effect on my TWA project.
Hi Chandradeo,
If you want to give a certain background to a particular page, you can use the background image for the container and place other UI widgets inside of it.
Alternatively, you can have a background picture for the body as well.
you can use css something like this.
body{
background-image: url('<Image URL>');
background-size: 100%;
background-attachment: fixed;
overflow: scroll;
}