A Pen by Rishi Giri on CodePen.
Last active
August 29, 2015 14:15
-
-
Save CodeDotJS/5159ce7c25010fc94110 to your computer and use it in GitHub Desktop.
turbine-in-move
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
var M = Math, | |
PI = M.PI, | |
TWOPI = PI * 2, | |
HALFPI = PI / 2, | |
canvas = document.createElement( 'canvas'), | |
ctx = canvas.getContext( '2d' ), | |
width = canvas.width = 1250, | |
height = canvas.height = 550, | |
cx = width / 2, | |
cy = height / 2, | |
count = 400, | |
sizeBase = 1, | |
sizeDiv = 5, | |
tick = 0; | |
ctx.translate( cx, cy ); | |
(function loop() { | |
requestAnimationFrame( loop ); | |
ctx.clearRect( -width / 2, -height / 2, width, height ); | |
ctx.fillStyle = '#fff'; | |
var angle = tick / 8, | |
radius = -50 + M.sin( tick / 15 ) * 20, | |
size; | |
for( var i = 0; i < count; i++ ) { | |
angle += PI / 64; | |
radius += i / 1; | |
size = sizeBase + i / sizeDiv; | |
ctx.beginPath(); | |
ctx.arc( M.cos( angle ) * radius, M.sin( angle ) * radius, size, 0, TWOPI, false ); | |
ctx.fillStyle = 'hsl(200, 70%, 50%)'; | |
ctx.fill(); | |
ctx.beginPath(); | |
ctx.arc( M.cos( angle ) * -radius, M.sin( angle ) * -radius, size, 0, TWOPI, false ); | |
ctx.fillStyle = 'hsl(320, 70%, 50%)'; | |
ctx.fill(); | |
ctx.beginPath(); | |
ctx.arc( M.cos( angle + HALFPI ) * radius, M.sin( angle + HALFPI ) * radius, size, 0, TWOPI, false ); | |
ctx.fillStyle = 'hsl(60, 70%, 50%)'; | |
ctx.fill(); | |
ctx.beginPath(); | |
ctx.arc( M.cos( angle + HALFPI ) * -radius, M.sin( angle + HALFPI ) * -radius, size, 0, TWOPI ); | |
ctx.fillStyle = 'hsl(0, 0%, 100%)'; | |
ctx.fill(); | |
} | |
tick++; | |
})(); | |
document.body.appendChild( canvas ); |
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
body { | |
background: #111; | |
overflow: hidden; | |
} | |
canvas { | |
bottom: 0; | |
left: 0; | |
margin: auto; | |
position: absolute; | |
right: 0; | |
top: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment