أخر الاخبار

إظافة الآلات الحاسبة إلى مدونات بلوجرcalculator

Adding calculator blogger... The codes are ready below...

مرحبا بكم أصدقائي الكرام في موضوع جديد من اظافات بلوجر.. 

موضوعنا اليوم هو عن كيفية  إظافة الآلات الحاسبة إلى مدونات بلوجر / إظافات بلوجر وسوف نستعرض كيفية القيام بإظافة آلة حاسبة إلكترونية عادية وعلمية متطورة جدا  إلى مدونات بلوجر وهذا باستخدام أكواد الجافا سكريبت..

في هذا الموضوع إن شاء الله سنعرف على :
1- كيفية إظافة مجموعة من الآلات الحاسبة العادية إلى مدونات بلوجر / إظافات بلوجر..
2- كيفية إظافة آلة حاسبة علمية متقدمة إلى مدونات بلوجر / إظافات بلوجر..

طريقة إظافة آلة حاسبة إلى مدونات بلوجر / إظافات بلوجر


حيث تعتبر الجافا سكربت من اقوى اللغات فى تطوير الويب ومن اكثرها سهولة، وفي هذا الدرس سنستعرض مجموعة من الألات حاسبة  بحيت نقوم بوضع الاكواد في القالب سواءا كإظافة جانبية أو كمشاركة أو كصفحة كاملة كما يمكن أن توضع في القالب الرئيسي للمدونة ولا ننصح بهذا فكثرة الإظافات تجعل المدونة بطيئة وفي كل مرة يتم تحميل القالب أو المدونة ستحمل الآلة الحاسبة دون إستخدام لهذا فوضعها كمشاركة أفضل مع وضع رابط لهذا بأقسام أو قائمة االمدونة وتستدعى عند الحاجة فقط.

وحتى لانطيل عليكم في المقدمة دعونا
نستعرض الآن اكواد الالات الحاسبة، على بركة الله.

إقرأ أيضا:



الالة الحاسبة رقم 1:

هي آلة جميلة وباألوان مختلفة وخفيفة كما بالصورة والكود الخاص بها هو الكود الموالي لها مباشرة

طريقة إظافة آلة حاسبة إلى مددونات بلوجر / إظافات بلوجر


<style>
/* Basic reset */
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 
 /* Better text styling */
 font: bold 14px Arial, sans-serif;
}

/* Finally adding some IE9 fallbacks for gradients to finish things up */

/* A nice BG gradient */
html {
 height: 100%;
 background: white;
 background: radial-gradient(circle, #fff 20%, #ccc);
 background-size: cover;
}

/* Using box shadows to create 3D effects */
#calculator {
 width: 325px;
 height: auto;
 
 margin: 100px auto;
 padding: 20px 20px 9px;
 
 background: #9dd2ea;
 background: linear-gradient(#9dd2ea, #8bceec);
 border-radius: 3px;
 box-shadow: 0px 4px #009de4, 0px 10px 15px rgba(0, 0, 0, 0.2);
}

/* Top portion */
.top span.clear {
 float: left;
}

/* Inset shadow on the screen to create indent */
.top .screen {
 height: 40px;
 width: 212px;
 
 float: right;
 
 padding: 0 10px;
 
 background: rgba(0, 0, 0, 0.2);
 border-radius: 3px;
 box-shadow: inset 0px 4px rgba(0, 0, 0, 0.2);
 
 /* Typography */
 font-size: 17px;
 line-height: 40px;
 color: white;
 text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
 text-align: right;
 letter-spacing: 1px;
}

/* Clear floats */
.keys, .top {overflow: hidden;}

/* Applying same to the keys */
.keys span, .top span.clear {
 float: left;
 position: relative;
 top: 0;
 
 cursor: pointer;
 
 width: 66px;
 height: 36px;
 
 background: white;
 border-radius: 3px;
 box-shadow: 0px 4px rgba(0, 0, 0, 0.2);
 
 margin: 0 7px 11px 0;
 
 color: #888;
 line-height: 36px;
 text-align: center;
 
 /* prevent selection of text inside keys */
 user-select: none;
 
 /* Smoothing out hover and active states using css3 transitions */
 transition: all 0.2s ease;
}

/* Remove right margins from operator keys */
/* style different type of keys (operators/evaluate/clear) differently */
.keys span.operator {
 background: #FFF0F5;
 margin-right: 0;
}

.keys span.eval {
 background: #f1ff92;
 box-shadow: 0px 4px #9da853;
 color: #888e5f;
}

.top span.clear {
 background: #ff9fa8;
 box-shadow: 0px 4px #ff7c87;
 color: white;
}

/* Some hover effects */
.keys span:hover {
 background: #9c89f6;
 box-shadow: 0px 4px #6b54d3;
 color: white;
}

.keys span.eval:hover {
 background: #abb850;
 box-shadow: 0px 4px #717a33;
 color: #ffffff;
}

.top span.clear:hover {
 background: #f68991;
 box-shadow: 0px 4px #d3545d;
 color: white;
}

/* Simulating "pressed" effect on active state of the keys by removing the box-shadow and moving the keys down a bit */
.keys span:active {
 box-shadow: 0px 0px #6b54d3;
 top: 4px;
}

.keys span.eval:active {
 box-shadow: 0px 0px #717a33;
 top: 4px;
}

.top span.clear:active {
 top: 4px;
 box-shadow: 0px 0px #d3545d;
}
</style>
<div id="calculator">
 <!-- Screen and clear key -->
 <div class="top">
  <span class="clear">C</span>
  <div class="screen"></div>
 </div>
 
 <div class="keys">
  <!-- operators and other keys -->
  <span>7</span>
  <span>8</span>
  <span>9</span>
  <span class="operator">+</span>
  <span>4</span>
  <span>5</span>
  <span>6</span>
  <span class="operator">-</span>
  <span>1</span>
  <span>2</span>
  <span>3</span>
  <span class="operator">÷</span>
  <span>0</span>
  <span>.</span>
  <span class="eval">=</span>
  <span class="operator">x</span>
 </div>
</div>
<script type='text/javascript'>
// Get all the keys from document
var keys = document.querySelectorAll('#calculator span');
var operators = ['+', '-', 'x', '÷'];
var decimalAdded = false;

// Add onclick event to all the keys and perform operations
for(var i = 0; i < keys.length; i++) {
 keys[i].onclick = function(e) {
  // Get the input and button values
  var input = document.querySelector('.screen');
  var inputVal = input.innerHTML;
  var btnVal = this.innerHTML;
  
  // Now, just append the key values (btnValue) to the input string and finally use javascript's eval function to get the result
  // If clear key is pressed, erase everything
  if(btnVal == 'C') {
   input.innerHTML = '';
   decimalAdded = false;
  }
  
  // If eval key is pressed, calculate and display the result
  else if(btnVal == '=') {
   var equation = inputVal;
   var lastChar = equation[equation.length - 1];
   
   // Replace all instances of x and ÷ with * and / respectively. This can be done easily using regex and the 'g' tag which will replace all instances of the matched character/substring
   equation = equation.replace(/x/g, '*').replace(/÷/g, '/');
   
   // Final thing left to do is checking the last character of the equation. If it's an operator or a decimal, remove it
   if(operators.indexOf(lastChar) > -1 || lastChar == '.')
    equation = equation.replace(/.$/, '');
   
   if(equation)
    input.innerHTML = eval(equation);
    
   decimalAdded = false;
  }
  
  // Basic functionality of the calculator is complete. But there are some problems like 
  // 1. No two operators should be added consecutively.
  // 2. The equation shouldn't start from an operator except minus
  // 3. not more than 1 decimal should be there in a number
  
  // We'll fix these issues using some simple checks
  
  // indexOf works only in IE9+
  else if(operators.indexOf(btnVal) > -1) {
   // Operator is clicked
   // Get the last character from the equation
   var lastChar = inputVal[inputVal.length - 1];
   
   // Only add operator if input is not empty and there is no operator at the last
   if(inputVal != '' && operators.indexOf(lastChar) == -1) 
    input.innerHTML += btnVal;
   
   // Allow minus if the string is empty
   else if(inputVal == '' && btnVal == '-') 
    input.innerHTML += btnVal;
   
   // Replace the last operator (if exists) with the newly pressed operator
   if(operators.indexOf(lastChar) > -1 && inputVal.length > 1) {
    // Here, '.' matches any character while $ denotes the end of string, so anything (will be an operator in this case) at the end of string will get replaced by new operator
    input.innerHTML = inputVal.replace(/.$/, btnVal);
   }
   
   decimalAdded =false;
  }
  
  // Now only the decimal problem is left. We can solve it easily using a flag 'decimalAdded' which we'll set once the decimal is added and prevent more decimals to be added once it's set. It will be reset when an operator, eval or clear key is pressed.
  else if(btnVal == '.') {
   if(!decimalAdded) {
    input.innerHTML += btnVal;
    decimalAdded = true;
   }
  }
  
  // if any other key is pressed, just append it
  else {
   input.innerHTML += btnVal;
  }
  
  // prevent page jumps
  e.preventDefault();
 } 
}
</script>
<!-- PrefixFree -->
<script src="http://thecodeplayer.com/uploads/js/prefixfree-1.0.7.js" type="text/javascript" type="text/javascript"></script>









الآلة الحاسبة رقم 2:

هي آلة جميلة وتتوفر على زر% ، وزر المسح ..... إلخ

طريقة إظافة آلة حاسبة إلى مددونات بلوجر / إظافات بلوجر
معاينة هذة الآلة الحاسبة / Calculator

<style> .calculatrice { width:300px; height:300px; background-color:#eeeeee; border:2px solid #CCCCCC; margin:auto; padding-left:5px; padding-bottom:5px; } .calculatrice td { height:16.66%; } .calc_td_resultat { text-align:center; } .calc_resultat { width:90%; text-align:right; } .calc_td_calculs { text-align:center; } .calc_calculs { width:90%; text-align:left; } .calc_td_btn { width:25%; height:100%; } .calc_btn { width:90%; height:90%; font-size:20px; } </style> <script type='text/javascript'> calc_array = new Array(); var calcul=0; var pas_ch=0; function $id(id) { return document.getElementById(id); } function f_calc(id,n) { if(n=='ce') { initialiser_calc(id); } else if(n=='=') { if(calc_array[id][0]!='=' && calc_array[id][1]!=1) { eval('calcul='+calc_array[id][2]+calc_array[id][0]+calc_array[id][3]+';'); calc_array[id][0] = '='; $id(id+'_resultat').value=calcul; calc_array[id][2]=calcul; calc_array[id][3]=0; } } else if(n=='+-') { $id(id+'_resultat').value=$id(id+'_resultat').value*(-1); if(calc_array[id][0]=='=') { calc_array[id][2] = $id(id+'_resultat').value; calc_array[id][3] = 0; } else { calc_array[id][3] = $id(id+'_resultat').value; } pas_ch = 1; } else if(n=='nbs') { if($id(id+'_resultat').value<10 && $id(id+'_resultat').value>-10) { $id(id+'_resultat').value=0; } else { $id(id+'_resultat').value=$id(id+'_resultat').value.slice(0,$id(id+'_resultat').value.length-1); } if(calc_array[id][0]=='=') { calc_array[id][2] = $id(id+'_resultat').value; calc_array[id][3] = 0; } else { calc_array[id][3] = $id(id+'_resultat').value; } } else { if(calc_array[id][0]!='=' && calc_array[id][1]!=1) { eval('calcul='+calc_array[id][2]+calc_array[id][0]+calc_array[id][3]+';'); $id(id+'_resultat').value=calcul; calc_array[id][2]=calcul; calc_array[id][3]=0; } calc_array[id][0] = n; } if(pas_ch==0) { calc_array[id][1] = 1; } else { pas_ch=0; } document.getElementById(id+'_resultat').focus(); return true; } function add_calc(id,n) { if(calc_array[id][1]==1) { $id(id+'_resultat').value=n; } else { $id(id+'_resultat').value+=n; } if(calc_array[id][0]=='=') { calc_array[id][2] = $id(id+'_resultat').value; calc_array[id][3] = 0; } else { calc_array[id][3] = $id(id+'_resultat').value; } calc_array[id][1] = 0; document.getElementById(id+'_resultat').focus(); return true; } function initialiser_calc(id) { $id(id+'_resultat').value=0; calc_array[id] = new Array('=',1,'0','0',0); document.getElementById(id+'_resultat').focus(); return true; } function key_detect_calc(id,evt) { if((evt.keyCode>95) && (evt.keyCode<106)) { var nbr = evt.keyCode-96; add_calc(id,nbr); } else if((evt.keyCode>47) && (evt.keyCode<58)) { var nbr = evt.keyCode-48; add_calc(id,nbr); } else if(evt.keyCode==107) { f_calc(id,'+'); } else if(evt.keyCode==109) { f_calc(id,'-'); } else if(evt.keyCode==106) { f_calc(id,'*'); } else if(evt.keyCode==111) { f_calc(id,''); } else if(evt.keyCode==110) { add_calc(id,'.'); } else if(evt.keyCode==190) { add_calc(id,'.'); } else if(evt.keyCode==188) { add_calc(id,'.'); } else if(evt.keyCode==13) { f_calc(id,'='); } else if(evt.keyCode==46) { f_calc(id,'ce'); } else if(evt.keyCode==8) { f_calc(id,'nbs'); } else if(evt.keyCode==27) { f_calc(id,'ce'); } return true; } </script> <table class="calculatrice" id="calc"> <tr> <td colspan="4" class="calc_td_resultat"> <input type="text" readonly="readonly" name="calc_resultat" id="calc_resultat" class="calc_resultat" onkeydown="javascript:key_detect_calc('calc',event);" /> </td> </tr> <tr> <td class="calc_td_btn"> <input type="button" class="calc_btn" value="CE" onclick="javascript:f_calc('calc','ce');" /> </td> <td class="calc_td_btn"> <input type="button" class="calc_btn" value="&larr;" onclick="javascript:f_calc('calc','nbs');" /> </td> <td class="calc_td_btn"> <input type="button" class="calc_btn" value="%" onclick="javascript:f_calc('calc','%');" /> </td> <td class="calc_td_btn"> <input type="button" class="calc_btn" value="+" onclick="javascript:f_calc('calc','+');" /> </td> </tr> <tr> <td class="calc_td_btn"> <input type="button" class="calc_btn" value="7" onclick="javascript:add_calc('calc',7);" /> </td> <td class="calc_td_btn"> <input type="button" class="calc_btn" value="8" onclick="javascript:add_calc('calc',8);" /> </td> <td class="calc_td_btn"> <input type="button" class="calc_btn" value="9" onclick="javascript:add_calc('calc',9);" /> </td> <td class="calc_td_btn"> <input type="button" class="calc_btn" value="-" onclick="javascript:f_calc('calc','-');" /> </td> </tr> <tr> <td class="calc_td_btn"> <input type="button" class="calc_btn" value="4" onclick="javascript:add_calc('calc',4);" /> </td> <td class="calc_td_btn"> <input type="button" class="calc_btn" value="5" onclick="javascript:add_calc('calc',5);" /> </td> <td class="calc_td_btn"> <input type="button" class="calc_btn" value="6" onclick="javascript:add_calc('calc',6);" /> </td> <td class="calc_td_btn"> <input type="button" class="calc_btn" value="x" onclick="javascript:f_calc('calc','*');" /> </td> </tr> <tr> <td class="calc_td_btn"> <input type="button" class="calc_btn" value="1" onclick="javascript:add_calc('calc',1);" /> </td> <td class="calc_td_btn"> <input type="button" class="calc_btn" value="2" onclick="javascript:add_calc('calc',2);" /> </td> <td class="calc_td_btn"> <input type="button" class="calc_btn" value="3" onclick="javascript:add_calc('calc',3);" /> </td> <td class="calc_td_btn"> <input type="button" class="calc_btn" value="&divide;" onclick="javascript:f_calc('calc','');" /> </td> </tr> <tr> <td class="calc_td_btn"> <input type="button" class="calc_btn" value="0" onclick="javascript:add_calc('calc',0);" /> </td> <td class="calc_td_btn"> <input type="button" class="calc_btn" value="&plusmn;" onclick="javascript:f_calc('calc','+-');" /> </td> <td class="calc_td_btn"> <input type="button" class="calc_btn" value="," onclick="javascript:add_calc('calc','.');" /> </td> <td class="calc_td_btn"> <input type="button" class="calc_btn" value="=" onclick="javascript:f_calc('calc','=');" /> </td> </tr> </table> <script type="text/javascript"> document.getElementById('calc').onload=initialiser_calc('calc'); </script>








الآلة الحاسبة رقم 3:

هي آلة بسيطة وصغيرة تتناسب مع جميع المدونات.

طريقة إظافة آلة حاسبة إلى مددونات بلوجر / إظافات بلوجر



<FORM NAME="Calc"> <TABLE BORDER=4> <TR> <TD> <INPUT TYPE="text" NAME="Input" Size="16"> <br> </TD> </TR> <TR> <TD> <INPUT TYPE="button" NAME="one" VALUE=" 1 " OnClick="Calc.Input.value += '1'"> <INPUT TYPE="button" NAME="two" VALUE=" 2 " OnCLick="Calc.Input.value += '2'"> <INPUT TYPE="button" NAME="three" VALUE=" 3 " OnClick="Calc.Input.value += '3'"> <INPUT TYPE="button" NAME="plus" VALUE=" + " OnClick="Calc.Input.value += ' + '"> <br> <INPUT TYPE="button" NAME="four" VALUE=" 4 " OnClick="Calc.Input.value += '4'"> <INPUT TYPE="button" NAME="five" VALUE=" 5 " OnCLick="Calc.Input.value += '5'"> <INPUT TYPE="button" NAME="six" VALUE=" 6 " OnClick="Calc.Input.value += '6'"> <INPUT TYPE="button" NAME="minus" VALUE=" - " OnClick="Calc.Input.value += ' - '"> <br> <INPUT TYPE="button" NAME="seven" VALUE=" 7 " OnClick="Calc.Input.value += '7'"> <INPUT TYPE="button" NAME="eight" VALUE=" 8 " OnCLick="Calc.Input.value += '8'"> <INPUT TYPE="button" NAME="nine" VALUE=" 9 " OnClick="Calc.Input.value += '9'"> <INPUT TYPE="button" NAME="times" VALUE=" x " OnClick="Calc.Input.value += ' * '"> <br> <INPUT TYPE="button" NAME="clear" VALUE=" c " OnClick="Calc.Input.value = ''"> <INPUT TYPE="button" NAME="zero" VALUE=" 0 " OnClick="Calc.Input.value += '0'"> <INPUT TYPE="button" NAME="DoIt" VALUE=" = " OnClick="Calc.Input.value = eval(Calc.Input.value)"> <INPUT TYPE="button" NAME="div" VALUE=" / " OnClick="Calc.Input.value += ' / '"> <br> </TD> </TR> </TABLE> </FORM> <p align="center"><font face="arial" size="-2"></font><br> <font face="arial, helvetica" size="-2"></font></p>










الآلة الحاسبة رقم 4:

هي آلة حاسبة بسيطة جدا ، ليس كمثيلتها من الآلات التي سبق و أن رأيناها لكنها ستقوم بواجبها على أية حال.

طريقة إظافة آلة حاسبة إلى مددونات بلوجر / إظافات بلوجر



<SCRIPT> function compute(obj) {obj.expr.value = eval(obj.expr.value)} var one = '1' var two = '2' var three = '3' var four = '4' var five = '5' var six = '6' var seven = '7' var eight = '8' var nine = '9' var zero = '0' var plus = '+' var minus = '-' var multiply = '*' var divide = '/' var decimal = '.' function enter(obj, string) {obj.expr.value += string} function clear(obj) {obj.expr.value = ''} </SCRIPT> <FORM name="calc"> <DIV align="center"> <TABLE border="1" bgcolor="#0033CC"> <TR> <TD colSpan="4"><INPUT size=30 name=expr action="compute(this.form)"></TD></TR> <TR> <TD bgColor="#000033"> <P><INPUT onclick="enter(this.form, seven)" type=button value=" 7 "></P></TD> <TD bgColor="#000033"> <P><INPUT onclick="enter(this.form, eight)" type=button value=" 8 "></P></TD> <TD bgColor="#000033"> <P><INPUT onclick="enter(this.form, nine)" type=button value=" 9 "></P></TD> <TD bgColor="#000033"> <P><INPUT onclick="enter(this.form, divide)" type=button value=" / "></P></TD></TR> <TR> <TD bgColor="#000033"> <P><INPUT onclick="enter(this.form, four)" type=button value=" 4 "></P></TD> <TD bgColor="#000033"> <P><INPUT onclick="enter(this.form, five)" type=button value=" 5 "></P></TD> <TD bgColor="#000033"> <P><INPUT onclick="enter(this.form, six)" type=button value=" 6 "></P></TD> <TD bgColor="#000033"> <P><INPUT onclick="enter(this.form, multiply)" type=button value=" * "></P></TD></TR> <TR> <TD bgColor="#000033"> <P><INPUT onclick="enter(this.form, one)" type=button value=" 1 "></P></TD> <TD bgColor="#000033"> <P><INPUT onclick="enter(this.form, two)" type=button value=" 2 "></P></TD> <TD bgColor="#000033"> <P><INPUT onclick="enter(this.form, three)" type=button value=" 3 "></P></TD> <TD bgColor="#000033"> <P><INPUT onclick="enter(this.form, minus)" type=button value=" - "></P></TD></TR> <TR> <TD bgColor="#000033" colSpan=2> <P><INPUT onclick="enter(this.form, zero)" type=button value=" 0 "></P></TD> <TD bgColor="#000033"> <P><INPUT onclick="enter(this.form, decimal)" type=button value=" . "></P></TD> <TD bgColor="#000033"> <P><INPUT onclick="enter(this.form, plus)" type=button value=" + "></P></TD></TR> <TR> <TD bgColor="#000033" colSpan=2> <P><INPUT onclick=compute(this.form) type=button value=" = "></P></TD> <TD bgColor="#000033" colSpan=2> <P><INPUT onclick=clear(this.form) type=reset value=AC> </P></TD></TR></TABLE></DIV></FORM> <P align="center"> <FONT face="Courier , New tahoma , erdana, arial, helveticav" size="2" color="#0000FF"><B><A target="_blank"






5- اظافة الة حاسبة علمية لمدونة بلوجر / Scientific calculator

blogger Scientific calculator

لإظافة آلة حاسبة علمية متقدمة لمدونتك على بلوجر يمكنك التوجه لهذا الموقع المختص بالحاسبة العلمية المميزة الرابط بالأسفل :
 ثم اولا لابد من التسجيل بالموقع 
ثم اتبع الارشادات البسيطة لإختيار الشكل الذي يناسبك 
ثم إنشاء الكود حسب الشكل الذي اخترته
ثم وضع كود الآلة الحاسبة العلمية حسب الشرح بالأسفل...
معاينة الآلة الحاسبة العلمية / Scientific calculator



طريقة التركيب لمختلف الآلات الحاسبة بمدونة بلوجر:

الطريقة الأولى:

1- من  لوحة التحكم بلوجر.

2- نختار تخطيط.

3- ثم إضافة أداة HTML/JavaScript .

4- ثم وضع الأكواد المختارة في الحقل 

5- الضغط على حفظ.

الطريقة الثانية:

1-نختار مشاركة جديدة.

2-ثم  تحرير.

3- ثم الإنتقال من وضع التأليف الى وضع HTML.

4- ثم نضع الأكواد المختارة .

5- نضغط على مشاركة أو معاينة.

الطريقة الثالثة:

1- ننتقل إلى الصفحات.

2- ثم صفحة جديدة.

3- ثم نختار  مجددا خانة HTML.

4- ثم نضع الأكواد المختارة فيه.

5- نضغط على حفظ أأو معاينة.



بالنسبة إلى إختيار طريقة التركيب تبقى لصاحب المدونة الحرية في إختيار طريقته الخاصة اما بالنسبة للمتقدمين فيمكن تركيبها حتى في القالب لاكنني لا أحبذ هذا.







ˆFr
وضع القراءة :
حجم الخط
+
16
-
تباعد السطور
+
2
-