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

              
                <script type="x-shader/shader-bit" id="shader-snoise2d">
  vec3 permute(vec3 x) { return mod(((x*34.0)+1.0)*x, 289.0); }

  float snoise(vec2 v){
    const vec4 C = vec4(0.211324865405187, 0.366025403784439,
                        -0.577350269189626, 0.024390243902439);
    vec2 i  = floor(v + dot(v, C.yy) );
    vec2 x0 = v -   i + dot(i, C.xx);
    vec2 i1;
    i1 = (x0.x > x0.y) ? vec2(1.0, 0.0) : vec2(0.0, 1.0);
    vec4 x12 = x0.xyxy + C.xxzz;
    x12.xy -= i1;
    i = mod(i, 289.0);
    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 ;
    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;
    m *= 1.79284291400159 - 0.85373472095314 * ( a0*a0 + h*h );
    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);
  }
</script>
              
            
!

CSS

              
                * { margin: 0; padding: 0; }
canvas { display: block; }
              
            
!

JS

              
                const vertexShaderSource = `#version 300 es

    uniform float u_time;
    uniform float u_timeOffset;

    in vec2 a_position;

    out vec4 v_position;

    ${document.getElementById('shader-snoise2d').textContent}
    
    void main () {
        float noiseX = snoise(a_position * 0.5 + u_time * 0.5) * 0.3;
        float noiseY = snoise(a_position * noiseX * 2.5 + u_time * 0.5) * 0.3;
        gl_Position = vec4(a_position + vec2(noiseX, noiseY), 0.0, 1.0);
        gl_PointSize = noiseY * 5.0 + 2.0;

        v_position = gl_Position;
    }
`

const fragmentShaderSource = `#version 300 es
    precision highp float;

    in vec4 v_position;

    out vec4 outColor;

    void main() {
        outColor = vec4(v_position.xyz + 0.5, 1.0);
    }
`


const webglUtils = {

    makeShader (gl, type, source) {
        let shader = gl.createShader(type)
        gl.shaderSource(shader, source)
        gl.compileShader(shader)

        if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) {
            let shaderType = type === gl.VERTEX_SHADER ? 'VERTEX' : 'FRAGMENT'
            console.error(
                `Error compiling ${shaderType} shader: 
                ${gl.getShaderInfoLog(shader)}`
            )
            gl.deleteShader(shader)

            return
        }

        return shader
    },
    
    makeProgram (gl, vertexShader, fragmentShader, doValidate = false) {
        let program = gl.createProgram()
        gl.attachShader(program, vertexShader)
        gl.attachShader(program, fragmentShader)
        gl.linkProgram(program)

        if (!gl.getProgramParameter(program, gl.LINK_STATUS)) {
            console.error(`Error linking program: ${gl.getProgramInfoLog(program)}`)
            gl.deleteProgram(program)
            return
        }

        if (doValidate) {
            gl.validateProgram(program)
            if (!gl.getProgramParameter(program, gl.VALIDATE_STATUS)) {
                console.error(`Error validating program ${gl.getProgramInfoLog(program)}`)
                gl.deleteProgram(program)
                return
            }
        }

        gl.deleteShader(vertexShader)
        gl.deleteShader(fragmentShader)

        return program
    },
    
    makeBuffer (gl, { bufferType, typedArray, drawType }) {
        const buffer = gl.createBuffer()
        gl.bindBuffer(bufferType, buffer)
        gl.bufferData(bufferType, typedArray, drawType)
        // gl.bindBuffer(bufferType, null)

        buffer.typedArray = typedArray

        return buffer
    },

    bindBuffer (gl, buffer, { bufferType, attribLocation, attribType, itemsPerVert }) {
        gl.bindBuffer(bufferType, buffer)
        if (!buffer) return
        gl.enableVertexAttribArray(attribLocation)
        gl.vertexAttribPointer(attribLocation, itemsPerVert, attribType, false, 0, 0)
        gl.bindBuffer(bufferType, null)
    },
    
    makeVAO (gl, attribs) {
        const rtn = {
            buffers: [],
            vao: gl.createVertexArray()
        }
        
        gl.bindVertexArray(rtn.vao)
    
        rtn.buffers = attribs.map(attrib => {
            const buffer = this.makeBuffer(gl, attrib)
            if (attrib.bufferType !== gl.ELEMENT_ARRAY_BUFFER) {
                this.bindBuffer(gl, buffer, attrib)
            }
            return buffer
        })

        gl.bindVertexArray(null)

        return rtn

    }

}

class Blob {
    constructor ({ numPoints, vShaderSource, fShaderSource }) {
        this._numPoints = numPoints
        this._vShaderSource = vShaderSource
        this._fShaderSource = fShaderSource
        this._uniformLocations = {}

        this._targetTimeOffset = 1
        this._timeOffset = 1
        
        this._gl = null
        this._program = null
        this._rtn = null
    }

    _setupVAO () {
        const { _gl: gl } = this
        const positions = new Float32Array(this._numPoints * 2)

        const step = (Math.PI * 200) / this._numPoints
        
        for (let i = 0; i < this._numPoints; i += 1) {
            positions[i * 2 + 0] = Math.sin(i * step) * (i / 85000)
            positions[i * 2 + 1] = Math.cos(i * step) * (i / 85000)
        }
        
        const attribs = [
            {
                bufferType: gl.ARRAY_BUFFER,
                typedArray: positions,
                drawType: gl.STREAM_DRAW,
                attribType: gl.FLOAT,
                itemsPerVert: 2,
                attribLocation: gl.getAttribLocation(this._program, 'a_position')
            }
        ]

        this._rtn = webglUtils.makeVAO(gl, attribs)
    }

    _setupUniforms () {
        const { _gl: gl } = this
        gl.useProgram(this._program)
        this._uniformLocations['u_time'] = gl.getUniformLocation(this._program, 'u_time')
        this._uniformLocations['u_timeOffset'] = gl.getUniformLocation(this._program, 'u_timeOffset')
        gl.useProgram(null)
    }

    init (gl) {
        this._gl = gl

        const vertexShader = webglUtils.makeShader(gl, gl.VERTEX_SHADER, this._vShaderSource)
        const fragmentShader = webglUtils.makeShader(gl, gl.FRAGMENT_SHADER, this._fShaderSource)
        this._program = webglUtils.makeProgram(gl, vertexShader, fragmentShader)
        
        this._setupVAO()
        this._setupUniforms()

        const timeOffsetInterval = setInterval(() => {
            this._targetTimeOffset = (Math.random() * 2 - 1) * 2
        }, 3000)

        return this
    }

    renderFrame (dt, now) {
        const { _gl: gl } = this

        this._timeOffset += (this._targetTimeOffset - this._timeOffset) * (dt * 2.25)

        gl.useProgram(this._program)

        gl.uniform1f(this._uniformLocations['u_time'], now)
        gl.uniform1f(this._uniformLocations['u_timeOffset'], this._timeOffset)

        gl.bindVertexArray(this._rtn.vao)
        gl.drawArrays(0, 0, this._numPoints)
        gl.bindVertexArray(null)
        gl.useProgram(null)
    }
}

const canvas = document.createElement('canvas')
const gl = canvas.getContext('webgl2')
const dpr = window.devicePixelRatio || 1

const blob = new Blob({
    numPoints: 70000,
    vShaderSource: vertexShaderSource,
    fShaderSource: fragmentShaderSource
}).init(gl)

let oldTimeMs = 0

const renderFrame = () => {
    window.requestAnimationFrame(renderFrame)
    
    const currentTimeMs = window.performance.now() / 1000
    const dt = currentTimeMs - oldTimeMs
    oldTimeMs = currentTimeMs
    
    gl.viewport(0, 0, window.innerWidth * dpr, window.innerHeight * dpr)
    gl.clearColor(0, 0, 0, 1)
    gl.clear(gl.COLOR_BUFFER_BIT)

    blob.renderFrame(dt, currentTimeMs)
}

const init = () => {
    canvas.width = window.innerWidth * dpr
    canvas.height = window.innerHeight * dpr
    canvas.style.width = `${window.innerWidth}px`
    canvas.style.height = `${window.innerHeight}px`
    document.body.appendChild(canvas)
}

window.onload = () => {
    init()
    renderFrame()
}
              
            
!
999px

Console