$("#specify").change(function() {
$("#bar").height($(this).val() * 2);
});
#container {
background-color: gray;
padding-left: 5px;
padding-right: 5px;
height: 200px;
width: 50px;
margin: 10px;
position: relative;
}
#bar {
/* Gradient Creator */
background: rgb(75,158,31); /* Old browsers */
background: -moz-linear-gradient(top, rgba(75,158,31,1) 0%, rgba(252,241,30,1) 50%, rgba(255,30,30,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(75,158,31,1) 0%,rgba(252,241,30,1) 50%,rgba(255,30,30,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(75,158,31,1) 0%,rgba(252,241,30,1) 50%,rgba(255,30,30,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4b9e1f', endColorstr='#ff1e1e',GradientType=0 ); /* IE6-9 */
width: 50px;
bottom: 0;
position: absolute;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input id="specify" type="number" max="100" min="0">
<div id="container">
<div id="bar">
</div>
</div>
Здесь происходит следующее: когда поле ввода изменяется, оно меняет высоту стержня.