Ver Mensaje Individual
  #1 (permalink)  
Antiguo 23/07/2013, 06:23
leonardosolarte5
 
Fecha de Ingreso: julio-2013
Mensajes: 2
Antigüedad: 11 años, 4 meses
Puntos: 0
Tomar foto de una cámara web al oprimir enter

Buenos días tengo un script en donde tomo una foto por medio una cámara web, me funciona bien lo malo es que toma la foto con el evento click y quisiera que lo haga cuando oprima la tecla enter en una caja de texto

var shootEnabled = false;
$('#formulario').click(function(){

if(!shootEnabled){
return false;
}
webcam.snap();
togglePane();
return false;
});

$('#cancelButton').click(function(){
webcam.reset();
togglePane();
return false;
});

$('#formulario').click(function(){
webcam.snap();
webcam.reset();
togglePane();
return false;
});

camera.find('.settings').click(function(){
if(!shootEnabled){
return false;
}

webcam.configure('camera');
});

// Mostrar y ocultar el panel de la cámara:

var shown = false;
$('.camTop').click(function(){

$('.tooltip').fadeOut('fast');

if(shown){
camera.animate({
bottom:-466
});
}
else {
camera.animate({
bottom:-5
},{easing:'easeOutExpo',duration:'slow'});
}

shown = !shown;
});

$('.tooltip').mouseenter(function(){
$(this).fadeOut('fast');
});