作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我没有找到任何放大视频圈的方法。尝试更改半径,但它不起作用。我想根据鼠标滚轮 Action 进行缩放。
<a-scene id="vr-scene" canvas="canvas: #vr-canvas">
<canvas class="vr-canvas"></canvas>
<a-assets timeout="500">
<video id="player" src="" autoplay="true" controls="false" webkit-playsinline ></video>
</a-assets>
<a-videosphere id="video" src="#player" rotation="0 90 0">
</a-videosphere>
</a-scene>
最佳答案
您可以通过创建一个控制相机 fov(即变焦)的自定义组件来实现此目的。
AFRAME.registerComponent('zoom-controls', {
schema:{
min:{type:"number", default: 5},
max: {type:"number", default: 120}
},
init: function(){
let self = this;
let sceneEl = document.querySelector("a-scene");
self.camera = sceneEl.querySelector("#camera");
console.log('min: ', self.data.min);
console.log('max: ', self.data.max);
window.addEventListener("wheel", event =>{
let amount = Math.sign(event.deltaY)*5 ;
let fov = Number(self.camera.getAttribute('camera').fov);
let adjust = amount + fov;
if(adjust < self.data.min) {adjust = self.data.min;}
if (adjust > self.data.max) {adjust = self.data.max;}
console.log('zoom: ', adjust);
self.camera.setAttribute('camera', 'fov', adjust);
});
}
});
<a-entity id="camera" camera="active: true" look-controls zoom-controls="min:5; max: 140" fov="100" position="0 0 0"></a-entity>
关于javascript - 如何缩放 A 框 Videosphere,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58748998/
我是一名优秀的程序员,十分优秀!