Taschenrechner?
lima-city → Forum → Die eigene Homepage → Homepage Allgemein
anklicken
anpassen
arbeit
aufgefallen
aussehen
code
dank
ding
funktion
http
kopieren
legal http
mathematische spielereien
mensch
schulferien
taschenrechner
vorteil
windows
wissenschaftlichen taschenrechner
ziemlich komische teile
-
Hi Leuts,
suche nach einem Taschenrechner mit sämtlichen funktionen für meine website. Dieser sollte nach möglichkeit Tasten zum anklicken haben und das aussehen modifizierbar sein...
ungefähr das ding:
http://www.schulferien.org/taschenrechner/taschenrechner.html
kennt von euch jemand so ein Script?? -
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage
-
Hab mal aus dem Quelltext geklaut xD
Zwishcen <head> und </head>:
<script type=\"text/javascript\"> function Check (Eingabe) { var nur_das = \"0123456789[]()-+*%/.\"; for (var i = 0; i < Eingabe.length; i++) if (nur_das.indexOf(Eingabe.charAt(i)) < 0) return false; return true; } function Ergebnis () { var x = 0; if (Check(window.document.Rechner.Display.value)) x = eval(window.document.Rechner.Display.value); window.document.Rechner.Display.value = x; } function Hinzufuegen (Zeichen) { window.document.Rechner.Display.value = window.document.Rechner.Display.value + Zeichen; } function Sonderfunktion (Funktion) { if (Check(window.document.Rechner.Display.value)) { if (Funktion == \"sqrt\") { var x = 0; x = eval(window.document.Rechner.Display.value); window.document.Rechner.Display.value = Math.sqrt(x); } if (Funktion == \"pow\") { var x = 0; x = eval(window.document.Rechner.Display.value); window.document.Rechner.Display.value = x * x; } if (Funktion == \"log\") { var x = 0; x = eval(window.document.Rechner.Display.value); window.document.Rechner.Display.value = Math.log(x); } } else window.document.Rechner.Display.value = 0} </script> <style type=\"text/css\"> .button { width:60px; text-align:center; font-family:System,sans-serif; font-size:100%; } .display { width:100%; text-align:right; font-family:System,sans-serif; font-size:100%; } </style>
Zwischen <body> und </body>:
<form name=\"Rechner\" action=\"\" onsubmit=\"Ergebnis();return false;\"> <table border=\"5\" cellpadding=\"10\" cellspacing=\"0\"> <tr> <td bgcolor=\"#C0C0C0\"> <input type=\"text\" name=\"Display\" align=\"right\" class=\"display\"></td> </tr><tr> <td bgcolor=\"#E0E0E0\"> <table border=\"0\" cellpadding=\"0\" cellspacing=\"2\"> <tr> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" 7 \" onclick=\"Hinzufuegen(\'7\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" 8 \" onclick=\"Hinzufuegen(\'8\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" 9 \" onclick=\"Hinzufuegen(\'9\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" + \" onclick=\"Hinzufuegen(\'+\')\"></td> </tr> <tr> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" 4 \" onclick=\"Hinzufuegen(\'4\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" 5 \" onclick=\"Hinzufuegen(\'5\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" 6 \" onclick=\"Hinzufuegen(\'6\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" - \" onclick=\"Hinzufuegen(\'-\')\"></td> </tr> <tr> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" 1 \" onclick=\"Hinzufuegen(\'1\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" 2 \" onclick=\"Hinzufuegen(\'2\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" 3 \" onclick=\"Hinzufuegen(\'3\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" * \" onclick=\"Hinzufuegen(\'*\')\"></td> </tr> <tr> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" 0 \" onclick=\"Hinzufuegen(\'0\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" . \" onclick=\"Hinzufuegen(\'.\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" = \" onclick=\"Ergebnis()\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" / \" onclick=\"Hinzufuegen(\'/\')\"></td> </tr> <tr> <td><input type=\"button\" width=\"60\" class=\"button\" value=\"sqrt \" onclick=\"Sonderfunktion(\'sqrt\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" pow \" onclick=\"Sonderfunktion(\'pow\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" log \" onclick=\"Sonderfunktion(\'log\')\"></td> <td><input type=\"reset\" width=\"60\" class=\"button\" value=\" C \"></td> </tr> </table> </td></tr></table> </form>
Kanst das Design natürlich deinen Wünschen anpassen, das bekommst du doch hin ? Ich mach es auch na deinen Wünschen, kostet dich NUR 1,95€
Mit einem freundlichem Gruß
Der codedieb xD
PS: Schon mal auf GOOGLE gewesen?
Beitrag geändert: 1.7.2008 18:37:25 von olearose -
Hab mal aus dem Quelltext geklaut xD
Zwishcen <head> und </head>:
<script type=\"text/javascript\"> function Check (Eingabe) { var nur_das = \"0123456789[]()-+*%/.\"; for (var i = 0; i < Eingabe.length; i++) if (nur_das.indexOf(Eingabe.charAt(i)) < 0) return false; return true; } function Ergebnis () { var x = 0; if (Check(window.document.Rechner.Display.value)) x = eval(window.document.Rechner.Display.value); window.document.Rechner.Display.value = x; } function Hinzufuegen (Zeichen) { window.document.Rechner.Display.value = window.document.Rechner.Display.value + Zeichen; } function Sonderfunktion (Funktion) { if (Check(window.document.Rechner.Display.value)) { if (Funktion == \"sqrt\") { var x = 0; x = eval(window.document.Rechner.Display.value); window.document.Rechner.Display.value = Math.sqrt(x); } if (Funktion == \"pow\") { var x = 0; x = eval(window.document.Rechner.Display.value); window.document.Rechner.Display.value = x * x; } if (Funktion == \"log\") { var x = 0; x = eval(window.document.Rechner.Display.value); window.document.Rechner.Display.value = Math.log(x); } } else window.document.Rechner.Display.value = 0} </script> <style type=\"text/css\"> .button { width:60px; text-align:center; font-family:System,sans-serif; font-size:100%; } .display { width:100%; text-align:right; font-family:System,sans-serif; font-size:100%; } </style>
Zwischen <body> und </body>:
<form name=\"Rechner\" action=\"\" onsubmit=\"Ergebnis();return false;\"> <table border=\"5\" cellpadding=\"10\" cellspacing=\"0\"> <tr> <td bgcolor=\"#C0C0C0\"> <input type=\"text\" name=\"Display\" align=\"right\" class=\"display\"></td> </tr><tr> <td bgcolor=\"#E0E0E0\"> <table border=\"0\" cellpadding=\"0\" cellspacing=\"2\"> <tr> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" 7 \" onclick=\"Hinzufuegen(\'7\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" 8 \" onclick=\"Hinzufuegen(\'8\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" 9 \" onclick=\"Hinzufuegen(\'9\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" + \" onclick=\"Hinzufuegen(\'+\')\"></td> </tr> <tr> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" 4 \" onclick=\"Hinzufuegen(\'4\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" 5 \" onclick=\"Hinzufuegen(\'5\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" 6 \" onclick=\"Hinzufuegen(\'6\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" - \" onclick=\"Hinzufuegen(\'-\')\"></td> </tr> <tr> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" 1 \" onclick=\"Hinzufuegen(\'1\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" 2 \" onclick=\"Hinzufuegen(\'2\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" 3 \" onclick=\"Hinzufuegen(\'3\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" * \" onclick=\"Hinzufuegen(\'*\')\"></td> </tr> <tr> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" 0 \" onclick=\"Hinzufuegen(\'0\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" . \" onclick=\"Hinzufuegen(\'.\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" = \" onclick=\"Ergebnis()\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" / \" onclick=\"Hinzufuegen(\'/\')\"></td> </tr> <tr> <td><input type=\"button\" width=\"60\" class=\"button\" value=\"sqrt \" onclick=\"Sonderfunktion(\'sqrt\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" pow \" onclick=\"Sonderfunktion(\'pow\')\"></td> <td><input type=\"button\" width=\"60\" class=\"button\" value=\" log \" onclick=\"Sonderfunktion(\'log\')\"></td> <td><input type=\"reset\" width=\"60\" class=\"button\" value=\" C \"></td> </tr> </table> </td></tr></table> </form>
Mit einem freundlichem Gruß
Der codedieb xD
PS: Schon mal auf GOOGLE gewesen? xD
Beitrag geändert: 1.7.2008 18:34:19 von olearose
Natürlich habe ich mich bereits mit google herumgeschlagen...
(meiner Meinung nach ist Google NICHT mein Freund )
Gab bloß ziemlich komische Teile die niemanden helfen und noch dazu hässlich aussehen...
Danke für das Script
Beitrag geändert: 1.7.2008 18:38:28 von onemillion -
Ausser es gibt viele Sachen direckt auf der Website zu berrechnen und das wird der Fall sein...
wo liegt direckt der vorteil des windoofs taschenrechners?? -
Ich hab ja nicht wirklich was gemacht xD
Trotzdem Danke xD
Beitrag geändert: 1.7.2008 18:48:26 von olearose -
Hier gibts einen Code auch noch legal:
http://www.kostenlose-javascripts.de/javascripts/mathematische-spielereien/taschenrechner.html
Das kopieren von der Website oben ist garantiert nicht legal! -
Ich find das sieht gaaaaanz schöhn genauso aus xD
Von daher...
Beitrag geändert: 1.7.2008 19:03:20 von olearose -
olearose schrieb:
Ich find das sieht gaaaaanz schöhn genauso aus xD
Von daher...
Beitrag geändert: 1.7.2008 19:03:20 von olearose
... sollte man trotzdem lieber meine legale Variante verwenden -
Falls es dir nicht aufgefallen ist, steht zumindest an dem wissenschaftlichen Taschenrechner dran, woher er kommt. Da hätteste nicht mal Google gebraucht und Google hilft da auch weiter. Aber damit du dir en bisjen Arbeit sparst hier [http://carpe.ambiprospect.com/projects/] der Link zu der Seite!
lg
-
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage