Logo Patagonia.png

Diferencia entre revisiones de «Widget:Calculator»

De Wikiexplora
Saltar a: navegación, buscar
(No se muestran 13 ediciones intermedias del mismo usuario)
Línea 4: Línea 4:
 
               <fieldset>
 
               <fieldset>
 
                 <legend>Calculate the time</legend>                 
 
                 <legend>Calculate the time</legend>                 
                 <label><input type="checkbox" id="roundtrip" name="roundtrip" value="RoundTrip" />Is a round trip</label>
+
                 <label><input type="checkbox" id="roundtrip" onclick="roundTripToggle()" name="roundtrip"/>Is a round trip</label>
 
            
 
            
 
                 <br/>
 
                 <br/>
Línea 13: Línea 13:
 
                 <input type="text"  id="horizontal" name="horizontal" value=""  />
 
                 <input type="text"  id="horizontal" name="horizontal" value=""  />
 
                 <br/>               
 
                 <br/>               
                 <label class="calculator-label">Metros de ascenso:</label>   
+
                 <label id="ascenso-label" name="ascenso-label" class="calculator-label">Metros de ascenso:</label>   
 
                 <input type="text"  id="ascenso" name="ascenso" value=""  />
 
                 <input type="text"  id="ascenso" name="ascenso" value=""  />
 
                 <br/>
 
                 <br/>
                 <label class="calculator-label">Metros de descenso:</label>  
+
                 <label id="descenso-label" name="descenso-label" class="calculator-label">Metros de descenso:</label>  
 
                 <input type="text"  id="descenso" name="descenso" value=""  />
 
                 <input type="text"  id="descenso" name="descenso" value=""  />
 
                
 
                
Línea 32: Línea 32:
 
function calculateTotal(){   
 
function calculateTotal(){   
 
     var theForm = document.forms["calculator"];   
 
     var theForm = document.forms["calculator"];   
     var altitude= parseInt(theForm.elements["altitude"].value);
+
     var altitude = parseInt(theForm.elements["altitude"].value);
     var horizontal= parseInt(theForm.elements["horizontal"].value);
+
     var horizontal = parseInt(theForm.elements["horizontal"].value);
     var ascenso= parseInt(theForm.elements["ascenso"].value);
+
     var ascenso = parseInt(theForm.elements["ascenso"].value);  
    var descenso= parseInt(theForm.elements["descenso"].value);
+
  
     var total = (horizontal * 0.75 + ascenso * 7.2 + descenso * 2.4) * (4 * Math.pow(10, -12) * Math.pow(altitude , 3) - 9 * Math.pow(10 , -9) * Math.pow(altitude , 2) + 4 * Math.pow(10, -5) * altitude + 0,9999) * (1/3600);
+
    if(theForm.elements["roundtrip"].checked){
     total  = Math.round(total  * 100) / 100;     
+
      var descenso = ascenso;
 +
    } else {
 +
      var descenso = parseInt(theForm.elements["descenso"].value);
 +
    } 
 +
   
 +
   
 +
     var total = (horizontal * 0.75 + ascenso * 7.2 + descenso * 2.4) * (4 * Math.pow(10, -12) * Math.pow(altitude , 3) - 9 * Math.pow(10 , -9) * Math.pow(altitude , 2) + 4 * Math.pow(10, -5) * altitude + 0.9999) * (1/3600);
 +
     total  = Math.round(total  * 100) / 100;
 +
    
 +
    if (isNaN(total) || total === ''|| total === 0){
 +
      total = 'Something is not right - please check the values';
 +
    } 
 +
    else {
 +
      total = "Total time: "+total+" hours";
 +
    }
  
 
     //display the result
 
     //display the result
 
     var divobj = document.getElementById('totalTime');
 
     var divobj = document.getElementById('totalTime');
 
     divobj.style.display='block';
 
     divobj.style.display='block';
     divobj.innerHTML = "Total time: "+total;
+
     divobj.innerHTML = total;
  
 
}
 
}
  
jQuery( document ).ready(function() {
+
function roundTripToggle(){
    $('#roundtrip').click(function(){
+
var theForm = document.forms["calculator"];
    if (this.checked) {
+
var descensoLabel = document.getElementById('descenso-label');
        $('input#descenso').css('display', 'none')
+
var descenso = document.getElementById('descenso');
    }
+
})
+
if(theForm.elements["roundtrip"].checked){    
});
+
    descensoLabel.style.display='none';   
 +
    descenso.style.display='none';
 +
}  
 +
else { 
 +
    descensoLabel.style.display='block';   
 +
    descenso.style.display='block';
 +
}
 +
 +
}
 +
</script>
  
 
 
</script>
 
 
<style>
 
<style>
 
.calculator-label{
 
.calculator-label{

Revisión del 22:10 20 ago 2017

<form action="" id="calculator" onsubmit="return false;">

              <fieldset>
               <legend>Calculate the time</legend>                
               <label><input type="checkbox" id="roundtrip" onclick="roundTripToggle()" name="roundtrip"/>Is a round trip</label>
         
               
<label class="calculator-label">Mean altitude of the whole route:</label> <input type="text" id="altitude" name="altitude" value="" />
<label class="calculator-label">Distancia horizontal en metros:</label> <input type="text" id="horizontal" name="horizontal" value="" />
<label id="ascenso-label" name="ascenso-label" class="calculator-label">Metros de ascenso:</label> <input type="text" id="ascenso" name="ascenso" value="" />
<label id="descenso-label" name="descenso-label" class="calculator-label">Metros de descenso:</label> <input type="text" id="descenso" name="descenso" value="" />
               </fieldset>


           <input type='submit' id='submit' value='Submit' onclick="calculateTotal()" />
       </div>  

</form> <script> function calculateTotal(){

   var theForm = document.forms["calculator"];   
   var altitude = parseInt(theForm.elements["altitude"].value);
   var horizontal = parseInt(theForm.elements["horizontal"].value);
   var ascenso = parseInt(theForm.elements["ascenso"].value);    
   if(theForm.elements["roundtrip"].checked){
     var descenso = ascenso; 
   } else {
     var descenso = parseInt(theForm.elements["descenso"].value); 
   }  
   
   
   var total = (horizontal * 0.75 + ascenso * 7.2 + descenso * 2.4) * (4 * Math.pow(10, -12) * Math.pow(altitude , 3) - 9 * Math.pow(10 , -9) * Math.pow(altitude , 2) + 4 * Math.pow(10, -5) * altitude + 0.9999) * (1/3600);
   total  = Math.round(total  * 100) / 100;  
  
   if (isNaN(total) || total === || total === 0){
     total = 'Something is not right - please check the values';
   }  
   else {
     total = "Total time: "+total+" hours";
   }
   //display the result
   var divobj = document.getElementById('totalTime');
   divobj.style.display='block';
   divobj.innerHTML = total;

}

function roundTripToggle(){

var theForm = document.forms["calculator"];
var descensoLabel = document.getElementById('descenso-label');
var descenso = document.getElementById('descenso');

if(theForm.elements["roundtrip"].checked){     
    descensoLabel.style.display='none';     
    descenso.style.display='none';
} 
else {  
    descensoLabel.style.display='block';     
    descenso.style.display='block';
}

} </script>

<style> .calculator-label{

   display: block;

} div#totalTime {

   font-size: 110%;
   font-weight: bold;

} </style>