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

Save Automatically?

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

              
                <div class="viewport"></div>
              
            
!

CSS

              
                * {
	margin: 0;
	padding: 0;
}

body {
	background-color: #FEFFEA;
}

.viewport {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

              
            
!

JS

              
                let container;
let scene;
let camera;
let renderer;
let material;

function onResize() {
	const { offsetWidth: width, offsetHeight: height } = container;

	camera.aspect = width / height;
  camera.updateProjectionMatrix();
  renderer.setSize(width, height);
}

function setup() {
	container = document.querySelector('.viewport');
	scene = new THREE.Scene();

	const { offsetWidth: width, offsetHeight: height } = container;

	camera = new THREE.PerspectiveCamera(45, width / height, 1, 100);
	camera.position.z = 4;

	renderer = new THREE.WebGLRenderer({
		alpha: true,
		antialias: false
	});

	renderer.setSize(width, height);
	renderer.setClearColor(0x000000, 0);

	container.appendChild(renderer.domElement);

	window.addEventListener('resize', onResize);

	const geometry = new THREE.PlaneGeometry(3, 3, 100, 100);
	material = new THREE.ShaderMaterial({
		side: THREE.DoubleSide,
		transparent: true,
		uniforms: {
			time: { type: 'f', value: 0.2 },
			speed: { type: 'f', value: 0.0017 },

			waveDefinition: { type: 'f', value: 1.5 },
			waveAmplitude: { type: 'f', value: 0.17 },

			topoDefinition: { type: 'f', value: 30 },
			topoColor: { type: 'c', value: new THREE.Color(52/255, 57/255, 124/255) }
		},
		vertexShader: `
      vec3 mod289(vec3 x) {
        return x - floor(x * (1.0 / 289.0)) * 289.0;
      }

      vec2 mod289(vec2 x) {
        return x - floor(x * (1.0 / 289.0)) * 289.0;
      }

      vec3 permute(vec3 x) {
        return mod289(((x*34.0)+1.0)*x);
      }

      float snoise(vec2 v)
      {
        const vec4 C = vec4(0.211324865405187,  // (3.0-sqrt(3.0))/6.0
            0.366025403784439,  // 0.5*(sqrt(3.0)-1.0)
            -0.577350269189626,  // -1.0 + 2.0 * C.x
            0.024390243902439); // 1.0 / 41.0
        // First corner
        vec2 i  = floor(v + dot(v, C.yy) );
        vec2 x0 = v -   i + dot(i, C.xx);

        // Other corners
        vec2 i1;
        //i1.x = step( x0.y, x0.x ); // x0.x > x0.y ? 1.0 : 0.0
        //i1.y = 1.0 - i1.x;
        i1 = (x0.x > x0.y) ? vec2(1.0, 0.0) : vec2(0.0, 1.0);
        // x0 = x0 - 0.0 + 0.0 * C.xx ;
        // x1 = x0 - i1 + 1.0 * C.xx ;
        // x2 = x0 - 1.0 + 2.0 * C.xx ;
        vec4 x12 = x0.xyxy + C.xxzz;
        x12.xy -= i1;

        // Permutations
        i = mod289(i); // Avoid truncation effects in permutation
        vec3 p = permute( permute( i.y + vec3(0.0, i1.y, 1.0 ))
            + i.x + vec3(0.0, i1.x, 1.0 ));

        vec3 m = max(0.5 - vec3(dot(x0,x0), dot(x12.xy,x12.xy), dot(x12.zw,x12.zw)), 0.0);
        m = m*m ;
        m = m*m ;

        // Gradients: 41 points uniformly over a line, mapped onto a diamond.
        // The ring size 17*17 = 289 is close to a multiple of 41 (41*7 = 287)

        vec3 x = 2.0 * fract(p * C.www) - 1.0;
        vec3 h = abs(x) - 0.5;
        vec3 ox = floor(x + 0.5);
        vec3 a0 = x - ox;

        // Normalise gradients implicitly by scaling m
        // Approximation of: m *= inversesqrt( a0*a0 + h*h );
        m *= 1.79284291400159 - 0.85373472095314 * ( a0*a0 + h*h );

        // Compute final noise value at P
        vec3 g;
        g.x  = a0.x  * x0.x  + h.x  * x0.y;
        g.yz = a0.yz * x12.xz + h.yz * x12.yw;
        return 130.0 * dot(m, g);
      }

      uniform float time;
      uniform float waveDefinition;
      uniform float waveAmplitude;

      varying vec3 vPosition;

      void main(void) {
        float newZ = snoise(uv) + snoise((uv * waveDefinition) + time);
        newZ *= waveAmplitude;

        vec3 newPosition = vec3(position.xy, position.z + newZ);
        vPosition = newPosition;

        gl_Position = projectionMatrix * modelViewMatrix * vec4(newPosition, 1.0);
      }
    `,
		fragmentShader: `
      float map(float value, float inMin, float inMax, float outMin, float outMax) {
        return (value - inMin) * (outMax - outMin) / (inMax - inMin) + outMin;
      }

      #extension GL_OES_standard_derivatives : enable

      uniform float waveAmplitude;
      uniform float topoDefinition;
      uniform vec3 topoColor;

      varying vec3 vPosition;

      void main(void) {
        float coord = vPosition.z * topoDefinition;
        float line = abs(fract(coord - 0.1) - 0.5) / fwidth(coord);
        line /= 1.1;

        gl_FragColor = vec4(topoColor, 1.0 - line);
      }
    `
	});

	const mesh = new THREE.Mesh(geometry, material);
  mesh.position.y += 0.3;
	mesh.rotation.x = -Math.PI / 4;
	scene.add(mesh);

	TweenMax.to(mesh.rotation, 10, { z: 2 * Math.PI, ease: Linear.easeOut, repeat: -1 });

	const gui = new dat.GUI();
  gui.close();

	const general = gui.addFolder('General');
	general.open();
	general.add(material.uniforms.speed, 'value', 0, 0.01).name('Speed')

	const wave = gui.addFolder('Wave');
	wave.open();
	wave.add(material.uniforms.waveDefinition, 'value', 0, 6).name('Definition');
	wave.add(material.uniforms.waveAmplitude, 'value', 0, 1).name('Amplitude');

	const topography = gui.addFolder('Topography');
	topography.open();
	topography.add(material.uniforms.topoDefinition, 'value', 0, 30).name('Definition');
	topography.addColor({ color: material.uniforms.topoColor.value.getHex() }, 'color')
		.name('Color')
		.onChange(v => material.uniforms.topoColor.value.setHex(v));

	draw();
}

function draw() {
	renderer.render(scene, camera);
	requestAnimationFrame(draw);

	material.uniforms.time.value += material.uniforms.speed.value;
}

setup();

              
            
!
999px

Console