Created
November 16, 2012 18:37
-
-
Save arjabbar/4089735 to your computer and use it in GitHub Desktop.
A CodePen by Abdur Jabbar. Animated frequency spectrum
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
<div id="bars"> | |
<p></p> | |
</div> | |
<div id="colors"> | |
<input id="red" type="range" min="0" max="255" /> | |
<input id="green" type="range" min="0" max="255" /> | |
<input id="blue" type="range" min="0" max="255" /> | |
<input id="opacity" type="range" min="0" max="100" /> | |
<input id="space" type="range" min="0" max="50" value="12"/> | |
<input id="numBars" type="range" min="0" max="10" value="5" /> | |
</div> |
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 space = $('p').width() + 2; | |
var numBars = 5; | |
update(); | |
function update(){ | |
$('#bars').html('<p></p>'); | |
for (i = 0; i < numBars; i++) | |
{ | |
$('<p></p>').insertAfter('p'); | |
} | |
$('p').each(function(index, element){ | |
$(this).css('left', (index * space) + 'px'); | |
}); | |
} | |
setInterval(function(){ | |
$('p').each(function(){ | |
$(this).css('height', function(){ | |
return (Math.random() * 150) | |
}); | |
}); | |
},150); | |
$('input').change(function(){ | |
var red = $('#red').attr('value'); | |
var green = $('#green').attr('value'); | |
var blue = $('#blue').attr('value'); | |
var opacity = $('#opacity').attr('value') / 100; | |
space = $('#space').attr('value'); | |
numBars = $('#numBars').attr('value'); | |
update(); | |
$('p').css('background-image', '-webkit-linear-gradient(bottom, rgba(' + red + ',' + green + ',' + blue + ',' + opacity + '), transparent)'); | |
}); | |
update(); | |
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
#bars { | |
position: fixed; | |
bottom: 10%; | |
transform: rotate(180deg); | |
transform-origin: center center; | |
right: 1%; | |
width: 500px; | |
margin-left: auto; | |
margin-right: auto; | |
} | |
p { | |
display: inline-block; | |
position: absolute; | |
left: 10px; | |
width: 10px; | |
height: 20px; | |
background-image: -webkit-linear-gradient(bottom, black, transparent); | |
-webkit-mask-image: -webkit-linear-gradient(bottom, red, black); | |
transition: all .5s linear; | |
} | |
p:hover { | |
height: 100px; | |
} | |
input:before { | |
content: attr(id); | |
padding: 20px; | |
text-transform: capitalize; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment