منتديات احلى حكاية
هل تريد التفاعل مع هذه المساهمة؟ كل ما عليك هو إنشاء حساب جديد ببضع خطوات أو تسجيل الدخول للمتابعة.

منتديات احلى حكاية دخول

موقع خاص بالتصاميم وتحويل الاستايلات واكواد حصريه لخدمه مواقع احلى منتدى


description[HTML ] كود آلة حاسبة Empty[HTML ] كود آلة حاسبة

more_horiz
السلام عليكم و رحمة الله و بركاته

كود
آلة حاسبة
تستطيع وضعها في موقعك بكل سهولة

الكود

الكود:

<form name=mef>
<input type=hidden name=dafunction value="">
<input type=hidden name=tempnum value="">
<input type=hidden name=daboo value="">
<input type=hidden name=memob value="0">
<script language=javascript>
function numbers(x) {

var daboo= document.mef.daboo.value;
var dafunction = document.mef.dafunction.value;
var deccheck = document.mef.results.value;
if(document.mef.results.value == "0" && deccheck.indexOf('.')=="-1") {
document.mef.results.value = "";
}

if(daboo != "true") {
document.mef.results.value=document.mef.results.value+x;
} else {
document.mef.results.value=x;
document.mef.daboo.value="";
}

}

function add() {
  if(document.mef.tempnum.value){
  gofigure();
  }

document.mef.dafunction.value='+';
document.mef.daboo.value='true';
document.mef.tempnum.value=document.mef.results.value;
}

function subtract() {

  if(document.mef.tempnum.value){
  gofigure();
 }
document.mef.dafunction.value='-';
document.mef.daboo.value='true';
document.mef.tempnum.value=document.mef.results.value;
}

function multiply() {
 if(document.mef.tempnum.value){
 gofigure();
 }
document.mef.dafunction.value='*';
document.mef.daboo.value='true';
document.mef.tempnum.value=document.mef.results.value;
}
function divide() {

 if(document.mef.tempnum.value){
 gofigure();
 }
document.mef.dafunction.value='/';
document.mef.daboo.value='true';
document.mef.tempnum.value=document.mef.results.value;
}

function oneoverx() {
document.mef.results.value=1/eval(document.mef.results.value);
}

function percenta() {
var whatdo = document.mef.dafunction.value;
var percnumber = document.mef.results.value / 100;
if(document.mef.tempnum.value){
document.mef.results.value =  eval(document.mef.tempnum.value)*percnumber;
} else {
document.mef.results.value = "0";
}
document.mef.tempnum.value="";
document.mef.dafunction.value="";
}

function squaroot() {
document.mef.results.value=Math.sqrt(document.mef.results.value);
}
function plusminus() {
var xy = document.mef.results.value;
if(xy == "0"){
return false;
}
if(xy.indexOf("-") == "0") {
 xy = xy.substring(1,xy.length);
 
} else {
xy = "-" + xy;

}
document.mef.results.value = xy;
}
function backspace() {
//ignore if zero already.//
if(document.mef.results.value=="0") {
return false; }
//length of the text field//
var numlength = document.mef.results.value;
//subtract one.//
var newresult = numlength.length-1;
//set to new value -1;//
document.mef.results.value = numlength.substring(0,newresult);
//set to zero if nothing left.
if(document.mef.results.value=="") {document.mef.results.value ="0";}
}

function clearfu() {
document.mef.tempnum.value="";
document.mef.results.value="0";
document.mef.dafunction.value="";
}

function gofigure() {
if(document.mef.tempnum.value==".") {
return false;
}
var whatdo = document.mef.dafunction.value;
if(whatdo=="+"){
document.mef.results.value = eval(document.mef.results.value) + eval(document.mef.tempnum.value);
}
else if(whatdo=="-"){
document.mef.results.value =  eval(document.mef.tempnum.value)-eval(document.mef.results.value);
}
else if(whatdo=="*"){
document.mef.results.value = eval(document.mef.results.value) * eval(document.mef.tempnum.value);
}

else if(whatdo=="/"){
document.mef.results.value = eval(document.mef.tempnum.value)/eval(document.mef.results.value) ;
}

document.mef.tempnum.value="";
document.mef.dafunction.value="";
}
</script>

<script language=javascript>
<!--//
if (navigator.appName == "Netscape")  {
document.write("<h3 align=center> الة الحاسبة</h3>");
  }
//-->
</script>
<p align="center">
<table style="border-style:inset;border-width:2px;" bgcolor=#CCCCCC><tr>
<td>
<p align="center"><span lang="ar-sa"><b><font face="verdana" color="#FFFFFF">آلة
حاسبة</font></b></span></td></tr><tr>
<td><input type=text value="0" size=33 name=results></td>
</tr>
<tr><td>
<input type=text name=memry style="background-color:#CCCCCC;" size=2>
<input type=button value="Backspace" style="background-color:#CCCCCC;color:red;width:67px;height:27px;font-size:10px;" OnClick="backspace()"> <input type=button value=" CE " style="background-color:#CCCCCC;color:red;width:67px;height:27px;font-size:10px;" OnClick="clearfu()"> <input type=button value=" C " style="background-color:#CCCCCC;color:red;width:57px;height:27px;font-size:10px;" OnClick="clearfu()">
</td></tr><tr>
<td>
<input type=button style="background-color:#CCCCCC;color:red;width:35px;height:27px;font-size:10px;" value=" MC " OnClick="document.mef.memry.value=' ',document.mef.memob.value='0'"> 
<input type=button value=" 7 " style="background-color:#CCCCCC;color:blue;width:35px;height:27px;font-size:10px;" OnClick="numbers(7)"> <input type=button value=" 8 " style="background-color:#CCCCCC;color:blue;width:35px;height:27px;font-size:10px;" OnClick="numbers(8)"> <input type=button value=" 9 " style="background-color:#CCCCCC;color:blue;width:35px;height:27px;font-size:10px;" OnClick="numbers(9)">

<input type=button style="background-color:#CCCCCC;color:red;width:35px;height:27px;font-size:10px;" value=" / " OnClick="divide()">
<input type=button style="background-color:#CCCCCC;color:blue;width:35px;height:27px;font-size:10px;" value="sqrt" OnClick="squaroot()">
</td></tr><tr>
<td>
<input type=button style="background-color:#CCCCCC;color:red;width:35px;height:27px;font-size:10px;" value="MR" OnClick="document.mef.results.value=document.mef.memob.value"> 
<input type=button value=" 4 " style="background-color:#CCCCCC;color:blue;width:35px;height:27px;font-size:10px;" OnClick="numbers(4)"> <input type=button value=" 5 " style="background-color:#CCCCCC;color:blue;width:35px;height:27px;font-size:10px;" OnClick="numbers(5)"> <input type=button value=" 6 " style="background-color:#CCCCCC;color:blue;width:35px;height:27px;font-size:10px;" OnClick="numbers(6)">

<input type=button style="background-color:#CCCCCC;color:red;width:35px;height:27px;font-size:10px;" value=" * " OnClick="multiply()">
<input type=button style="background-color:#CCCCCC;color:blue;width:35px;height:27px;font-size:10px;" value=" % " OnClick="percenta()">
</td></tr>
<tr>
<td>
<input type=button style="background-color:#CCCCCC;color:red;width:35px;height:27px;font-size:10px;" value=" MS "> 
<input type=button value=" 1 " style="background-color:#CCCCCC;color:blue;width:35px;height:27px;font-size:10px;" OnClick="numbers(1)"> <input type=button value=" 2 " style="background-color:#CCCCCC;color:blue;width:35px;height:27px;font-size:10px;" OnClick="numbers(2)"> <input type=button value=" 3 " style="background-color:#CCCCCC;color:blue;width:35px;height:27px;font-size:10px;" OnClick="numbers(3)">

<input type=button style="background-color:#CCCCCC;color:red;width:35px;height:27px;font-size:10px;" value=" - " OnClick="subtract()">
<input type=button style="background-color:#CCCCCC;color:blue;width:35px;height:27px;font-size:10px;" value=" 1/x " OnClick="oneoverx()">
</td>
</tr><tr>
<td>
<input type=button style="background-color:#CCCCCC;color:red;width:35px;height:27px;font-size:10px;" value=" M+ " OnClick="document.mef.memry.value=' M',document.mef.memob.value=document.mef.results.value;"> 
<input type=button value="0" style="background-color:#CCCCCC;color:blue;width:35px;height:27px;font-size:10px;" OnClick="numbers(0)"> <input type=button value="+/-" style="background-color:#CCCCCC;color:blue;width:35px;height:27px;font-size:10px;" OnClick="plusminus() "> <input type=button value=" . " style="background-color:#CCCCCC;color:blue;width:35px;height:27px;font-size:10px;" OnClick="numbers('.')"> <input type=button style="background-color:#CCCCCC;color:red;width:35px;height:27px;font-size:10px;" value=" + " OnClick="add()"> <input type=button style="background-color:#CCCCCC;color:blue;width:35px;height:27px;font-size:10px;" value=" = " OnClick="gofigure()">
</td></tr>
<tr><td> </td></tr>
</table>
</p>


طريقة وضع الكود


لوحة الاداره / مظهر المنتدى / الصفحة الرئيسيه / تشكيلات عامة

ضع الكود ثم اضغط سجل


او يمكنك وضعه فى اى مكان يقبل الـ HTML


لمزيد من الشروحات عن كيفية وضع الكود

من هنا

https://a7la-7ekaya.0wn0.com/t3883-topic


الكود محول من الفى بى الى احلى منتديات من قبل فريق احلى حكاية

مع تحيات

ادارة منتديات احلى حكاية

description[HTML ] كود آلة حاسبة Emptyرد: [HTML ] كود آلة حاسبة

more_horiz
كول الموضوع بجد
privacy_tip صلاحيات هذا المنتدى:
لاتستطيع الرد على المواضيع في هذا المنتدى
power_settings_newقم بتسجيل الدخول للرد