A-Frame blocks scrolling on the page where I use it. When I open a page with my A-Frame scene, it occupies 100% of the width and height of the page, and I cannot scroll it. Is there a class that needs to be deleted?
You can use the component embeddedto remove full-screen styles and make it embedded in the web page. https://aframe.io/docs/0.3.0/components/embedded.html
embedded
<a-scene embedded> <!-- scene stuff --> </a-scene>
Then you are free style <a-scene>as you wish
<a-scene>
a-scene { display: block; width: 50%; }
Source: https://habr.com/ru/post/1656128/More articles:Access angular2 variables in jquery - javascriptHow to access a class variable? - ruby | fooobar.comWhen using the scroll elasticSearch api, can I go to page n? - pythonFailed to resolve CustomTransform as transformation type - .netAvoiding SIGCHLD Error In Bash Script That Uses Parallel GNU - linuxNoClassDefFoundError: com / android / build / gradle / internal / ToolingRegistryProvider - android-gradleGet the distance to the next largest floating point number in R - floating-pointKilling GenServer from the inside - elixirRemoving EventListener in ngOnDestroy - angularHow to listen for a mousemove event on a Document object in Angular - angularAll Articles