CSS3DRenderer, CSS3DObject, OrthographicCamera API 结合使用案例

本文主要是介绍CSS3DRenderer, CSS3DObject, OrthographicCamera API 结合使用案例,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

CSS3DRenderer, CSS3DObject, OrthographicCamera API 结合使用案例


<!DOCTYPE html>
<html><head><title>three.js css3d - orthographic</title><meta charset="utf-8"><meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"><link type="text/css" rel="stylesheet" href="main.css"><style>body {background-color: #f0f0f0;}a {color: #f00;}#info {color: #000000;}</style></head><body><div id="info"><a href="https://threejs.org" target="_blank" rel="noopener">three.js</a> css3d - orthographic</div><script type="importmap">{"imports": {"three": "../build/three.module.js","three/addons/": "./jsm/"}}</script><script type="module">import * as THREE from 'three';import { OrbitControls } from 'three/addons/controls/OrbitControls.js';import { CSS3DRenderer, CSS3DObject } from 'three/addons/renderers/CSS3DRenderer.js';import { GUI } from 'three/addons/libs/lil-gui.module.min.js';let camera, scene, renderer;let scene2, renderer2;const frustumSize = 500;init();animate();function init() {const aspect = window.innerWidth / window.innerHeight;camera = new THREE.OrthographicCamera( frustumSize * aspect / - 2, frustumSize * aspect / 2, frustumSize / 2, frustumSize / - 2, 1, 1000 );camera.position.set( - 200, 200, 200 );scene = new THREE.Scene();scene.background = new THREE.Color( 0xf0f0f0 );scene2 = new THREE.Scene();const material = new THREE.MeshBasicMaterial( { color: 0x000000, wireframe: true, wireframeLinewidth: 1, side: THREE.DoubleSide } );// leftcreatePlane(100, 100,'chocolate',new THREE.Vector3( - 50, 0, 0 ),new THREE.Euler( 0, - 90 * THREE.MathUtils.DEG2RAD, 0 ));// rightcreatePlane(100, 100,'saddlebrown',new THREE.Vector3( 0, 0, 50 ),new THREE.Euler( 0, 0, 0 ));// topcreatePlane(100, 100,'yellowgreen',new THREE.Vector3( 0, 50, 0 ),new THREE.Euler( - 90 * THREE.MathUtils.DEG2RAD, 0, 0 ));// bottomcreatePlane(300, 300,'seagreen',new THREE.Vector3( 0, - 50, 0 ),new THREE.Euler( - 90 * THREE.MathUtils.DEG2RAD, 0, 0 ));//renderer = new THREE.WebGLRenderer();renderer.setPixelRatio( window.devicePixelRatio );renderer.setSize( window.innerWidth, window.innerHeight );document.body.appendChild( renderer.domElement );renderer2 = new CSS3DRenderer();renderer2.setSize( window.innerWidth, window.innerHeight );renderer2.domElement.style.position = 'absolute';renderer2.domElement.style.top = 0;document.body.appendChild( renderer2.domElement );const controls = new OrbitControls( camera, renderer2.domElement );controls.minZoom = 0.5;controls.maxZoom = 2;function createPlane( width, height, cssColor, pos, rot ) {const element = document.createElement( 'div' );element.style.width = width + 'px';element.style.height = height + 'px';element.style.opacity = 0.75;element.style.background = cssColor;const object = new CSS3DObject( element );object.position.copy( pos );object.rotation.copy( rot );scene2.add( object );const geometry = new THREE.PlaneGeometry( width, height );const mesh = new THREE.Mesh( geometry, material );mesh.position.copy( object.position );mesh.rotation.copy( object.rotation );scene.add( mesh );}window.addEventListener( 'resize', onWindowResize );createPanel();}function onWindowResize() {const aspect = window.innerWidth / window.innerHeight;camera.left = - frustumSize * aspect / 2;camera.right = frustumSize * aspect / 2;camera.top = frustumSize / 2;camera.bottom = - frustumSize / 2;camera.updateProjectionMatrix();renderer.setSize( window.innerWidth, window.innerHeight );renderer2.setSize( window.innerWidth, window.innerHeight );}function animate() {requestAnimationFrame( animate );renderer.render( scene, camera );renderer2.render( scene2, camera );}function createPanel() {const panel = new GUI();const folder1 = panel.addFolder( 'camera setViewOffset' ).close();const settings = {'setViewOffset'() {folder1.children[ 1 ].enable().setValue( window.innerWidth );folder1.children[ 2 ].enable().setValue( window.innerHeight );folder1.children[ 3 ].enable().setValue( 0 );folder1.children[ 4 ].enable().setValue( 0 );folder1.children[ 5 ].enable().setValue( window.innerWidth );folder1.children[ 6 ].enable().setValue( window.innerHeight );},'fullWidth': 0,'fullHeight': 0,'offsetX': 0,'offsetY': 0,'width': 0,'height': 0,'clearViewOffset'() {folder1.children[ 1 ].setValue( 0 ).disable();folder1.children[ 2 ].setValue( 0 ).disable();folder1.children[ 3 ].setValue( 0 ).disable();folder1.children[ 4 ].setValue( 0 ).disable();folder1.children[ 5 ].setValue( 0 ).disable();folder1.children[ 6 ].setValue( 0 ).disable();camera.clearViewOffset();}};folder1.add( settings, 'setViewOffset' );folder1.add( settings, 'fullWidth', window.screen.width / 4, window.screen.width * 2, 1 ).onChange( ( val ) => updateCameraViewOffset( { fullWidth: val } ) ).disable();folder1.add( settings, 'fullHeight', window.screen.height / 4, window.screen.height * 2, 1 ).onChange( ( val ) => updateCameraViewOffset( { fullHeight: val } ) ).disable();folder1.add( settings, 'offsetX', 0, 256, 1 ).onChange( ( val ) => updateCameraViewOffset( { x: val } ) ).disable();folder1.add( settings, 'offsetY', 0, 256, 1 ).onChange( ( val ) => updateCameraViewOffset( { y: val } ) ).disable();folder1.add( settings, 'width', window.screen.width / 4, window.screen.width * 2, 1 ).onChange( ( val ) => updateCameraViewOffset( { width: val } ) ).disable();folder1.add( settings, 'height', window.screen.height / 4, window.screen.height * 2, 1 ).onChange( ( val ) => updateCameraViewOffset( { height: val } ) ).disable();folder1.add( settings, 'clearViewOffset' );}function updateCameraViewOffset( { fullWidth, fullHeight, x, y, width, height } ) {if ( ! camera.view ) {camera.setViewOffset( fullWidth || window.innerWidth, fullHeight || window.innerHeight, x || 0, y || 0, width || window.innerWidth, height || window.innerHeight );} else {camera.setViewOffset( fullWidth || camera.view.fullWidth, fullHeight || camera.view.fullHeight, x || camera.view.offsetX, y || camera.view.offsetY, width || camera.view.width, height || camera.view.height );}}</script></body>
</html>

本内容来源于小豆包,想要更多内容请跳转小豆包 》

这篇关于CSS3DRenderer, CSS3DObject, OrthographicCamera API 结合使用案例的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/817508

相关文章

Python如何使用seleniumwire接管Chrome查看控制台中参数

《Python如何使用seleniumwire接管Chrome查看控制台中参数》文章介绍了如何使用Python的seleniumwire库来接管Chrome浏览器,并通过控制台查看接口参数,本文给大家... 1、cmd打开控制台,启动谷歌并制定端口号,找不到文件的加环境变量chrome.exe --rem

Oracle数据库使用 listagg去重删除重复数据的方法汇总

《Oracle数据库使用listagg去重删除重复数据的方法汇总》文章介绍了在Oracle数据库中使用LISTAGG和XMLAGG函数进行字符串聚合并去重的方法,包括去重聚合、使用XML解析和CLO... 目录案例表第一种:使用wm_concat() + distinct去重聚合第二种:使用listagg,

使用C#代码计算数学表达式实例

《使用C#代码计算数学表达式实例》这段文字主要讲述了如何使用C#语言来计算数学表达式,该程序通过使用Dictionary保存变量,定义了运算符优先级,并实现了EvaluateExpression方法来... 目录C#代码计算数学表达式该方法很长,因此我将分段描述下面的代码片段显示了下一步以下代码显示该方法如

Go语言使用Buffer实现高性能处理字节和字符

《Go语言使用Buffer实现高性能处理字节和字符》在Go中,bytes.Buffer是一个非常高效的类型,用于处理字节数据的读写操作,本文将详细介绍一下如何使用Buffer实现高性能处理字节和... 目录1. bytes.Buffer 的基本用法1.1. 创建和初始化 Buffer1.2. 使用 Writ

redis-cli命令行工具的使用小结

《redis-cli命令行工具的使用小结》redis-cli是Redis的命令行客户端,支持多种参数用于连接、操作和管理Redis数据库,本文给大家介绍redis-cli命令行工具的使用小结,感兴趣的... 目录基本连接参数基本连接方式连接远程服务器带密码连接操作与格式参数-r参数重复执行命令-i参数指定命

PyTorch使用教程之Tensor包详解

《PyTorch使用教程之Tensor包详解》这篇文章介绍了PyTorch中的张量(Tensor)数据结构,包括张量的数据类型、初始化、常用操作、属性等,张量是PyTorch框架中的核心数据结构,支持... 目录1、张量Tensor2、数据类型3、初始化(构造张量)4、常用操作5、常用属性5.1 存储(st

使用zabbix进行监控网络设备流量

《使用zabbix进行监控网络设备流量》这篇文章主要为大家详细介绍了如何使用zabbix进行监控网络设备流量,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录安装zabbix配置ENSP环境配置zabbix实行监控交换机测试一台liunx服务器,这里使用的为Ubuntu22.04(

使用Python将长图片分割为若干张小图片

《使用Python将长图片分割为若干张小图片》这篇文章主要为大家详细介绍了如何使用Python将长图片分割为若干张小图片,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1. python需求的任务2. Python代码的实现3. 代码修改的位置4. 运行结果1. Python需求

SpringBoot如何使用TraceId日志链路追踪

《SpringBoot如何使用TraceId日志链路追踪》文章介绍了如何使用TraceId进行日志链路追踪,通过在日志中添加TraceId关键字,可以将同一次业务调用链上的日志串起来,本文通过实例代码... 目录项目场景:实现步骤1、pom.XML 依赖2、整合logback,打印日志,logback-sp

Python视频处理库VidGear使用小结

《Python视频处理库VidGear使用小结》VidGear是一个高性能的Python视频处理库,本文主要介绍了Python视频处理库VidGear使用小结,文中通过示例代码介绍的非常详细,对大家的... 目录一、VidGear的安装二、VidGear的主要功能三、VidGear的使用示例四、VidGea