Ver Mensaje Individual
  #3 (permalink)  
Antiguo 15/03/2015, 23:00
Eclypse05
 
Fecha de Ingreso: julio-2012
Mensajes: 11
Antigüedad: 12 años, 4 meses
Puntos: 0
Respuesta: Saber cuanto tiempo tengo el click

Me imagino que seria esto??

Código HTML:
Ver original
  1. <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
  2. </head>
  3. <style type="text/css">
  4. .contenedor{
  5.   width:150px;
  6.   height:150px;
  7.   padding-top:1em;
  8.   text-align:center;
  9.   background-color:#2c2c2c;
  10.   color:white;
  11.   margin:1em;
  12.   float:left;
  13.   cursor:pointer;
  14. }
  15.  
  16.   <div class="contenedor">
  17.  
  18.   </div>
  19.   <script type="text/javascript">
  20.     $(function(){
  21.   $(".contenedor").on("mousedown", segundos);
  22.    $(".contenedor").on("mouseup", cancelar);
  23.  
  24.   function segundos () {   
  25.     tiempo = setInterval(tiempof, 1000);
  26.   }
  27.  
  28.   function cancelar (){
  29.     clearInterval(tiempo);
  30.   }
  31. var sec = 0;
  32.   function tiempof (){
  33.     $(".contenedor").html("<span>"+ ++sec +" segundos</span>");
  34.     console.log(sec);  
  35.   }
  36. });
  37.   </script>
  38. </body>