Como no cavia en el otro, aquí te pongo el js y el css del proyecto:
SCRIPT:
Código Javascript
:
Ver originalfunction PlaySound(path) {
var audioElement = document.createElement('audio');
audioElement.setAttribute('src', path);
audioElement.play();
}
function cronometro() {
var count = 50,
number = document.getElementById('numero'),
audio1 = document.getElementById("audio1"),
audio2 = document.getElementById("audio2"),
intervalo = setInterval(function(){
count--;
number.innerHTML = count;
if (count == 10){
audio1.play();
}
if(count == 0){
clearInterval(intervalo);
audio2.play();
}
}, 1000);
}
function calcula(operacion){
var operando1 = document.calc.operando1.value;
var operando2 = document.calc.operando2.value;
var result = eval(operando1 + operacion + operando2);
document.calc.resultado.value = result ;
}
function calcula2(operacion){
var operando3 = document.calc2.operando3.value;
var operando2 = document.calc2.operando2.value;
var result = eval(operando3 + operacion + operando2);
document.calc2.resultado2.value = result ;
}
function inc_countSumarEntradas()
{
var input1 = document.getElementById('Entradas');
var input2 = document.getElementById('Entradas2');
input1.value = parseInt(input1.value) + 1;
input2.value = parseInt(input2.value) + 1;
}
function inc_countBorrarEntradas()
{
var input1 = document.getElementById('Entradas');
var input2 = document.getElementById('Entradas2');
input1.value = parseInt(input1.value) - 1;
input2.value = parseInt(input2.value) - 1;
}
function inc_countMenos(id)
{
res = document.getElementById(id);
res.value = parseInt(res.value)-1;
}
function inc_count1(id)
{
res = document.getElementById(id);
res.value = parseInt(res.value)+1;
}
function inc_count2(id)
{
res = document.getElementById(id);
res.value = parseInt(res.value)+2;
}
function inc_count3(id)
{
res = document.getElementById(id);
res.value = parseInt(res.value)+3;
}
function inc_count4(id)
{
res = document.getElementById(id);
res.value = parseInt(res.value)+4;
}
function inc_count5(id)
{
res = document.getElementById(id);
res.value = parseInt(res.value)+5;
}
function inc_count6(id)
{
res = document.getElementById(id);
res.value = parseInt(res.value)+6;
}
function inc_count7(id)
{
res = document.getElementById(id);
res.value = parseInt(res.value)+7;
}
function inc_count8(id)
{
res = document.getElementById(id);
res.value = parseInt(res.value)+8;
}
function inc_count9(id)
{
res = document.getElementById(id);
res.value = parseInt(res.value)+9;
}