|
@@ -0,0 +1,150 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html>
|
|
|
+ <head>
|
|
|
+ <meta charset="utf-8">
|
|
|
+ <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
|
|
|
+ <title>three.js css2d - label</title>
|
|
|
+ <style>
|
|
|
+ body {
|
|
|
+ background-color: #000;
|
|
|
+ margin: 0;
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+ #info {
|
|
|
+ position: absolute;
|
|
|
+ top: 0px;
|
|
|
+ width: 100%;
|
|
|
+ color: #FFF;
|
|
|
+ padding: 5px;
|
|
|
+ font-family: Monospace;
|
|
|
+ font-size: 13px;
|
|
|
+ text-align: center;
|
|
|
+ z-index: 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ .label{
|
|
|
+ color: #FFF;
|
|
|
+ font-family: sans-serif;
|
|
|
+ padding: 2px;
|
|
|
+ background: rgba( 0, 0, 0, .6 );
|
|
|
+ }
|
|
|
+
|
|
|
+ a {
|
|
|
+ color: #000000;
|
|
|
+ }
|
|
|
+
|
|
|
+ </style>
|
|
|
+ </head>
|
|
|
+ <body>
|
|
|
+ <div id="info"><a href="http://threejs.org" target="_blank" rel="noopener">three.js</a> - three.js css2d - label</div>
|
|
|
+
|
|
|
+ <script src="../build/three.js"></script>
|
|
|
+
|
|
|
+ <script src="js/controls/OrbitControls.js"></script>
|
|
|
+
|
|
|
+ <script src="js/renderers/CSS2DRenderer.js"></script>
|
|
|
+
|
|
|
+ <script>
|
|
|
+
|
|
|
+ var camera, scene, renderer, renderer2;
|
|
|
+ var controls;
|
|
|
+ var clock = new THREE.Clock();
|
|
|
+ var textureLoader = new THREE.TextureLoader();
|
|
|
+
|
|
|
+ var earth, moon;
|
|
|
+
|
|
|
+ init();
|
|
|
+ animate();
|
|
|
+
|
|
|
+ function init() {
|
|
|
+
|
|
|
+ var EARTH_RADIUS = 1;
|
|
|
+ var MOON_RADIUS = 0.27;
|
|
|
+
|
|
|
+ camera = new THREE.PerspectiveCamera( 45, window.innerWidth / window.innerHeight, 1, 1000 );
|
|
|
+ camera.position.set( 10, 5, 20 );
|
|
|
+
|
|
|
+ controls = new THREE.OrbitControls( camera );
|
|
|
+
|
|
|
+ scene = new THREE.Scene();
|
|
|
+
|
|
|
+ scene2 = new THREE.Scene();
|
|
|
+
|
|
|
+ dirLight = new THREE.DirectionalLight( 0xffffff );
|
|
|
+ dirLight.position.set( 0, 0, 1 );
|
|
|
+ scene.add( dirLight );
|
|
|
+
|
|
|
+ var axesHelper = new THREE.AxesHelper( 5 );
|
|
|
+ scene.add( axesHelper );
|
|
|
+
|
|
|
+ //
|
|
|
+
|
|
|
+ var earthGeometry = new THREE.SphereBufferGeometry( EARTH_RADIUS, 16, 16 );
|
|
|
+ var earthMaterial = new THREE.MeshPhongMaterial( {
|
|
|
+ specular: 0x333333,
|
|
|
+ shininess: 5,
|
|
|
+ map: textureLoader.load( 'textures/planets/earth_atmos_2048.jpg' ),
|
|
|
+ specularMap: textureLoader.load( 'textures/planets/earth_specular_2048.jpg' ),
|
|
|
+ normalMap: textureLoader.load( 'textures/planets/earth_normal_2048.jpg' ),
|
|
|
+ normalScale: new THREE.Vector2( 0.85, 0.85 )
|
|
|
+ } );
|
|
|
+ earth = new THREE.Mesh( earthGeometry, earthMaterial );
|
|
|
+ scene.add( earth );
|
|
|
+
|
|
|
+ var moonGeometry = new THREE.SphereBufferGeometry( MOON_RADIUS, 16, 16 );
|
|
|
+ var moonMaterial = new THREE.MeshPhongMaterial( {
|
|
|
+ shininess: 5,
|
|
|
+ map: textureLoader.load( 'textures/planets/moon_1024.jpg' )
|
|
|
+ } );
|
|
|
+ moon = new THREE.Mesh( moonGeometry, moonMaterial );
|
|
|
+ scene.add( moon );
|
|
|
+
|
|
|
+ //
|
|
|
+
|
|
|
+ var earthDiv = document.createElement( 'div' );
|
|
|
+ earthDiv.className = 'label';
|
|
|
+ earthDiv.textContent = 'Earth';
|
|
|
+ earthDiv.style.marginTop = '-1em';
|
|
|
+ var earthLabel = new THREE.CSS2DObject( earthDiv );
|
|
|
+ earthLabel.position.set( 0, EARTH_RADIUS, 0 );
|
|
|
+ earth.add( earthLabel );
|
|
|
+
|
|
|
+ var moonDiv = document.createElement( 'div' );
|
|
|
+ moonDiv.className = 'label';
|
|
|
+ moonDiv.textContent = 'Moon';
|
|
|
+ moonDiv.style.marginTop = '-1em';
|
|
|
+ var moonLabel = new THREE.CSS2DObject( moonDiv );
|
|
|
+ moonLabel.position.set( 0, MOON_RADIUS, 0 );
|
|
|
+ moon.add( moonLabel );
|
|
|
+
|
|
|
+ //
|
|
|
+
|
|
|
+ renderer = new THREE.WebGLRenderer();
|
|
|
+ renderer.setPixelRatio( window.devicePixelRatio );
|
|
|
+ renderer.setSize( window.innerWidth, window.innerHeight );
|
|
|
+ document.body.appendChild( renderer.domElement );
|
|
|
+
|
|
|
+ renderer2 = new THREE.CSS2DRenderer();
|
|
|
+ renderer2.setSize( window.innerWidth, window.innerHeight );
|
|
|
+ renderer2.domElement.style.position = 'absolute';
|
|
|
+ renderer2.domElement.style.top = 0;
|
|
|
+ document.body.appendChild( renderer2.domElement );
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ function animate() {
|
|
|
+
|
|
|
+ requestAnimationFrame( animate );
|
|
|
+
|
|
|
+ var elapsed = clock.getElapsedTime();
|
|
|
+
|
|
|
+ moon.position.set( Math.sin( elapsed ) * 5, 0, Math.cos( elapsed ) * 5 );
|
|
|
+
|
|
|
+ renderer.render( scene, camera );
|
|
|
+ renderer2.render( scene, camera );
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ </script>
|
|
|
+ </body>
|
|
|
+</html>
|