Hi everybody,
In my app, i need to keep background image fixed when user navigate between diferent pages.
When I push from page to page, I need the new page to just bring its content and have a transparent background.
What about this? Although I set the transparent background property of the second page, you see a white background. Then, by analyzing the code, I see that the previous page is added an attribute called [hidden] when I am in the new page, that makes it still see everything white, if I manually edit the html from the console and delete that attribute , You can see all the previous page with its content and above superimposed the new page.
I could use jquery, to remove the attribute, to hide elements, etc, but I do not want to do so.
Is there a way to be able to do this in a not so fancy way?
I need to achieve an effect as if a background was fixed and only the content that is inside would move, that each page only brings content and not background with it.
Thank you very much!!!