gpt4 book ai didi

css - A 型框架 - 设置高度和宽度

转载 作者:太空宇宙 更新时间:2023-11-04 07:21:03 24 4
gpt4 key购买 nike

我正在尝试为我的 aframe 设置高度和宽度元素,但它会填满窗口,尽管我应用了任何样式。我正在尝试将我的 aframe 360​​ 图像设置为 300 像素高和 300 像素宽:CODEPEN DEMO

body {
background: #fff;
}

.container {
position: absolute;
margin: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: #f66;
height: 300px;
width: 300px;
overflow: hidden;
}

a-scene {
opacity: .5;
height: 300px;
width: 300px;
}

最佳答案

这是因为,默认情况下,a-scene使用未修改的源 JS 将添加 class="fullscreen"

您可以覆盖它,也可以简单地添加 embedded <a-scene> 的参数像这样标记:

<a-scene antialias="true" embedded>
<a-sky src="https://ucarecdn.com/e1c757bc-73ee-4efe-b068-4f778ce212a3/" rotation="0 -20 0"></a-sky>
</a-scene>

当然还有一个 Forked Example

关于css - A 型框架 - 设置高度和宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50281200/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com