freeCodeCamp/guide/arabic/tools/calculators/tip-calculator/index.md

4.7 KiB

title localeTitle
Tip Calculator نوع الكمبيوتر

تلميح حاسبة

حاسبة التلميحات هي عبارة عن آلة حاسبة تقوم بحساب معلومات سرية بناءً على النسبة المئوية للفاتورة الإجمالية.

الخطوة 1 - HTML:

نحن ننشئ نموذجًا لإدخال المبلغ المفضل:

` <!doctype html>

<html lang="en"> <head>
<!-- Bootstrap CSS --> 
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous"> 
</head>

Tip Calculator

$
              <input type="range" class="form-control" id="tipInput" value="0"> 
              <span class="input-group-addon" id="tipOutput"></span> 
            </div> 
          </div> 



        </form> 
        <hr> 

        <!-- RESULTS --> 
        <div id="results" class="pt-4"> 
          <h5>Results</h5> 
          <div class="form-group"> 
            <div class="input-group"> 
              <span class="input-group-addon">Tip amount</span> 
              <input type="number" class="form-control" id="tipAmount" disabled> 
            </div> 
          </div> 

          <div class="form-group"> 
            <div class="input-group"> 
              <span class="input-group-addon">Total Bill with Tip</span> 
              <input type="number" class="form-control" id="totalBillWithTip" disabled> 
            </div> 
          </div> 


        </div> 
      </div> 
    </div> 
  </div> 
</div> 

<!-- Optional JavaScript --> 
<!-- jQuery first, then Popper.js, then Bootstrap JS --> 
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script> 
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script> 
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script> 
</html> `

الخطوة 2 - CSS:

يمكنك تصميم النمط كيفما تشاء. يمكنك أيضًا استخدام CSS لإخفاء النتائج وعرضها من خلال جافا سكريبت بعد ملء المستخدم للنموذج:

#results { display:none; }

الخطوة 3: JavaScript:

نضيف حدث onchange. يحدث الحدث onchange عندما يتفاعل المستخدم مع النموذج.

سيقوم هذا الإجراء بتنفيذ وظيفة تقوم بحساب مبلغ الفاتورة النهائي استنادًا إلى طرف النسبة المئوية ، ثم تقوم بإرجاع النتائج.

``document.querySelector('#tip-form').onchange = function(){

var bill = Number(document.getElementById('billTotal').value); var tip = document.getElementById('tipInput').value; document.getElementById('tipOutput').innerHTML = ${tip}%; var tipValue = bill * (tip/100) var finalBill = bill + tipValue console.log(finalBill) var tipAmount = document.querySelector('#tipAmount') var totalBillWithTip = document.querySelector('#totalBillWithTip')

tipAmount.value = tipValue.toFixed(2); totalBillWithTip.value =finalBill.toFixed(2);

//Show Results

document.getElementById('results').style.display='block' } ``

يمكنك مشاهدة مثال عملي ورمزه على Codepen.io .