Perhaps there is even another workaround.
It is just an idea, but perhaps could work.
You are searching for something what is some kind of moving elements / resizing elements on your page page, right? → some kind of responsivness?
Let’s say you want to place a → BOX <— somewhere on your page.
Yes, you won’t be able to replace the placed BOX by changing it’s x/y-coordinate on the page…
And no you don’t even have to ask for such an Feature-Request, it was already done years ago…
https://www.wix.com/velo/requested-feature/moving-elements-on-page
In the meanwhile the animation-api exists, which perhaps could handle this, not sure → never tried this.
There are also other very interessting requests already made, to solve the responsivness and the moving/positioning of wix-elements issue a little bit more.
This one also could be from my own, very useful!
However back to your problem.
IDEA:
-Placing an HTML-COMPONENT on your page.
-allowing it to go → FULL-SCREEN
-managing all the rest inside the HTML-Component.
-drawing/creating/generating/moving and placing your wished elements inside HTML-Component.
Since your HTML-Component is sized to your whole screen, all you would have to do is to CODE all the COMMUNICATION between PAGE & HTML-Component.
Example: Taking this CSS-CODE as example…
div {
width : 300px;
border : 15px solid green;
padding : 50px;
margin : 20px;
}
You can’t do it directly on your page, right?
But sending it into the HTML-Component would make it possible to be done.
So now you would be able to draw/generate and also do movements of your wished objec.
And since you are working on FULL-SCREEN you should be able to code some kind of RESPONSIVNESS.
But all this is just some theoretical thoughts, i do not know if all that will work, like described!
Test it on your own and let us know, if you could do some progress. 