Ver Mensaje Individual
  #3 (permalink)  
Antiguo 19/06/2012, 17:02
alexg88
 
Fecha de Ingreso: abril-2011
Mensajes: 1.342
Antigüedad: 13 años, 8 meses
Puntos: 344
Respuesta: Cómo hago este incremento???

Buenas,

Te dejo un ejemplo, la fórmula es la que ha indicado oms02.

Código HTML:
Ver original
  1. <div id="aumentar">
  2. </div>
  3. <input type="text" id="valor"/>

Código Javascript:
Ver original
  1. $(document).ready(function(){
  2. $('#valor').keyup(function(){
  3.    
  4.      valor = parseInt($(this).val());
  5.  
  6. if (valor != NaN){
  7.    
  8.     height = valor * 100 + Math.floor((valor - 1) / 2) * 10;    
  9.    
  10.  $('#aumentar').css('height',height);  
  11. }
  12.  
  13.      
  14.     });
  15. });