Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                Enjoy this spinning cube using basic THREE.js techniques!
              
            
!

CSS

              
                canvas {
  position: fixed;
  top: 0;
  left: 0;
}
              
            
!

JS

              
                //Using main window height and width
//for fullscreen effect
var width = window.innerWidth;
var height = window.innerHeight;

//Renderer animates mainly
var renderer = new THREE.WebGLRenderer({
  antialias: true
});
//Setting width and height
renderer.setSize(width, height);
// Adding canvas without HTML5
document.body.appendChild(renderer.domElement);
// New THREE.js SCENE
var scene = new THREE.Scene;

// The CUBE
var cubeGeometry = new THREE.CubeGeometry(100, 100, 100);
// Color mainly, but also texture
var cubeMaterial = new THREE.MeshLambertMaterial({
  color: 0xFFFFFF
});
var cube = new THREE.Mesh(cubeGeometry, cubeMaterial);

// Main rotation (original before spin)
cube.rotation.y = Math.PI * 45 / 180;

//Add the cube to the scene
scene.add(cube);

var camera = new THREE.PerspectiveCamera(45, width / height, 0.1, 10000);

camera.position.y = 160;
camera.position.z = 400;

scene.add(camera);

// Point the camera at the cube
camera.lookAt(cube.position);

// camera (sky like the sun and //reflective greenhouse effect)
var skyboxGeometry = new THREE.CubeGeometry(10000, 10000, 10000);
var skyboxMaterial = new THREE.MeshBasicMaterial({
  color: 0xFFFFFF,
  side: THREE.BackSide
});
var skybox = new THREE.Mesh(skyboxGeometry, skyboxMaterial);

//Add the skybox (lights)
scene.add(skybox);

//Main light
var pointLight = new THREE.PointLight(0xffffff);
pointLight.position.set(0, 300, 200);

//Add the main light to the scene
scene.add(pointLight);

//CLOCK
var clock = new THREE.Clock;
//END CLOCK

/* MAIN ANIMATION FUNCTION FOR GOOD PRECISION. Using jQuery, You could make a lambada function */
function render() {
  renderer.render(scene, camera);
  cube.rotation.y -= clock.getDelta();
  requestAnimationFrame(render);
}

render();
              
            
!
999px

Console