Ver Mensaje Individual
  #11 (permalink)  
Antiguo 24/02/2016, 04:15
Avatar de jearj
jearj
 
Fecha de Ingreso: julio-2008
Mensajes: 72
Antigüedad: 16 años, 4 meses
Puntos: 0
Respuesta: boton doble funcion

Como no cavia en el otro, aquí te pongo el js y el css del proyecto:

SCRIPT:

Código Javascript:
Ver original
  1. function PlaySound(path) {
  2.   var audioElement = document.createElement('audio');
  3.   audioElement.setAttribute('src', path);
  4.   audioElement.play();
  5. }
  6.  
  7.  
  8. function cronometro() {
  9.     var count = 50,
  10.         number = document.getElementById('numero'),
  11.         audio1 = document.getElementById("audio1"),
  12.         audio2 = document.getElementById("audio2"),
  13.         intervalo = setInterval(function(){
  14.             count--;
  15.             number.innerHTML = count;
  16.             if (count == 10){
  17.                 audio1.play();
  18.             }
  19.             if(count == 0){
  20.                 clearInterval(intervalo);
  21.                 audio2.play();
  22.             }
  23.         }, 1000);
  24. }
  25.  
  26.  
  27.  function calcula(operacion){
  28.  var operando1 = document.calc.operando1.value;
  29.  
  30.  var operando2 = document.calc.operando2.value;
  31.  var result = eval(operando1 + operacion + operando2);
  32.  document.calc.resultado.value = result ;
  33.  }
  34.  
  35.  
  36.  function calcula2(operacion){
  37.  var operando3 = document.calc2.operando3.value;
  38.  var operando2 = document.calc2.operando2.value;
  39.  var result = eval(operando3 + operacion + operando2);
  40.  document.calc2.resultado2.value = result ;
  41.  }
  42.  
  43.  
  44.                 function inc_countSumarEntradas()
  45.                 {
  46.                         var input1 = document.getElementById('Entradas');
  47.                         var input2 = document.getElementById('Entradas2');
  48.  
  49.                         input1.value = parseInt(input1.value) + 1;
  50.                         input2.value = parseInt(input2.value) + 1;
  51.                 }
  52.                  function inc_countBorrarEntradas()
  53.                 {
  54.                         var input1 = document.getElementById('Entradas');
  55.                         var input2 = document.getElementById('Entradas2');
  56.  
  57.                         input1.value = parseInt(input1.value) - 1;
  58.                         input2.value = parseInt(input2.value) - 1;
  59.                 }
  60.  
  61.  
  62.  function inc_countMenos(id)
  63. {
  64. res = document.getElementById(id);
  65. res.value = parseInt(res.value)-1;
  66. }
  67.  
  68.  function inc_count1(id)
  69. {
  70. res = document.getElementById(id);
  71. res.value = parseInt(res.value)+1;
  72. }
  73.  
  74. function inc_count2(id)
  75. {
  76. res = document.getElementById(id);
  77. res.value = parseInt(res.value)+2;
  78. }
  79.  
  80. function inc_count3(id)
  81. {
  82. res = document.getElementById(id);
  83. res.value = parseInt(res.value)+3;
  84. }
  85. function inc_count4(id)
  86. {
  87. res = document.getElementById(id);
  88. res.value = parseInt(res.value)+4;
  89. }
  90.  
  91. function inc_count5(id)
  92. {
  93. res = document.getElementById(id);
  94. res.value = parseInt(res.value)+5;
  95. }
  96.  
  97. function inc_count6(id)
  98. {
  99. res = document.getElementById(id);
  100. res.value = parseInt(res.value)+6;
  101. }
  102.  
  103. function inc_count7(id)
  104. {
  105. res = document.getElementById(id);
  106. res.value = parseInt(res.value)+7;
  107. }
  108.  
  109. function inc_count8(id)
  110. {
  111. res = document.getElementById(id);
  112. res.value = parseInt(res.value)+8;
  113. }
  114.  
  115. function inc_count9(id)
  116. {
  117. res = document.getElementById(id);
  118. res.value = parseInt(res.value)+9;
  119. }