Changeset 2134321
- Timestamp:
- 08/05/2019 02:05:29 PM (7 years ago)
- Location:
- maths-calculator/trunk
- Files:
-
- 2 edited
-
style.css (modified) (1 diff)
-
wm-calculator.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
maths-calculator/trunk/style.css
r2134319 r2134321 18 18 padding: 1% 19 19 } 20 20 #operations { 21 background: #ff9933; 22 width: 15%; 23 font-size: 20px; 24 font-weight: 900; 25 border-radius: 7px; 26 margin-left: 13px; 27 margin-top: 10px; 28 color: #fff; 29 font-weight: normal !important; 30 padding: 1% 31 } 21 32 #wm-calculator { 22 33 position: relative; -
maths-calculator/trunk/wm-calculator.php
r2134313 r2134321 18 18 <input id="operations-actions" type="button" value=" - " onclick="calculator.answer.value += '-'"/> 19 19 <input id="operations-actions" type="button" value="." onclick="calculator.answer.value += '.'"/> 20 <input type="button" name="inputtangent" value=" tan " onclick='tan()'/>20 <input id="operations" type="button" name="inputtangent" value=" tan " onclick='tan()'/> 21 21 </br> 22 22 <input id="number-button" type="button" value=" 3 " onclick="calculator.answer.value += '3'"/> … … 25 25 <input id="operations-actions" type="button" value=" x " onclick="calculator.answer.value += '*'"/> 26 26 <input id="operations-actions" type="button" name="inputsqrt" value="√" onclick='sqrt()'> 27 <input type="button" name="inputsquare" value=" square " onclick='power()'/>27 <input id="operations" type="button" name="inputsquare" value=" square " onclick='power()'/> 28 28 </br> 29 29 30 <input type="button" name="inputround" value=" round " onclick='round()'/>30 <input id="operations" type="button" name="inputround" value=" round " onclick='round()'/> 31 31 <input id="number-button" type="button" value=" 0 " onclick="calculator.answer.value += '0'"/> 32 32 <input id="button-red" type="button" value=" = " … … 34 34 <input id="operations-actions" type="button" value=" / " onclick="calculator.answer.value += '/'"/> 35 35 <input id="operations-actions" type="button" name="inputsine" value=" sin " onclick='sin()'/> 36 <input type="button" name="inputcosine" value=" cos " onclick='cos()'/>36 <input id="operations" type="button" name="inputcosine" value=" cos " onclick='cos()'/> 37 37 38 38 </br>
Note: See TracChangeset
for help on using the changeset viewer.