Created
July 27, 2018 15:45
-
-
Save mattdesl/cb27d1285d4ceaa091094bad92ebd7fb to your computer and use it in GitHub Desktop.
animated grid lines
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const canvasSketch = require('canvas-sketch'); | |
const { lerp } = require('./util/math'); | |
const settings = { | |
animate: true, | |
duration: 3, | |
dimensions: [ 640, 640 ], | |
scaleToView: true, | |
playbackRate: 'throttle', | |
fps: 24 | |
}; | |
// Start the sketch | |
canvasSketch(() => { | |
return ({ context, frame, width, height, playhead }) => { | |
context.clearRect(0, 0, width, height); | |
context.fillStyle = 'white'; | |
context.fillRect(0, 0, width, height); | |
const gridSize = 7; | |
const padding = width * 0.2; | |
const tileSize = (width - padding * 2) / gridSize; | |
for (let x = 0; x < gridSize; x++) { | |
for (let y = 0; y < gridSize; y++) { | |
// get a 0..1 UV coordinate | |
const u = gridSize <= 1 ? 0.5 : x / (gridSize - 1); | |
const v = gridSize <= 1 ? 0.5 : y / (gridSize - 1); | |
// scale to dimensions with a border padding | |
const tx = lerp(padding, width - padding, u); | |
const ty = lerp(padding, height - padding, v); | |
// here we get a 't' value between 0..1 that | |
// shifts subtly across the UV coordinates | |
const offset = u * 0.2 + v * 0.1; | |
const t = (playhead + offset) % 1; | |
// now we get a value that varies from 0..1 and back | |
let mod = Math.sin(t * Math.PI); | |
// we make it 'ease' a bit more dramatically with exponential | |
mod = Math.pow(mod, 3); | |
// now choose a length, thickness and initial rotation | |
const length = tileSize * 0.65; | |
const thickness = tileSize * 0.1; | |
const initialRotation = Math.PI / 2; | |
// And rotate each line a bit by our modifier | |
const rotation = initialRotation + mod * Math.PI; | |
// Now render... | |
draw(context, tx, ty, length, thickness, rotation); | |
} | |
} | |
}; | |
function draw (context, x, y, length, thickness, rotation) { | |
context.save(); | |
context.fillStyle = 'black'; | |
// Rotate in place | |
context.translate(x, y); | |
context.rotate(rotation); | |
context.translate(-x, -y); | |
// Draw the line | |
context.fillRect(x - length / 2, y - thickness / 2, length, thickness); | |
context.restore(); | |
} | |
}, settings); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment