master
Paul Walko 2014-11-13 07:50:35 -05:00
parent 33413c468c
commit 072b3dc0c9
4 changed files with 7 additions and 13 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,6 @@
canvas{
background-color: #ffffff;
}
body{
background-color: #ddd;
overflow-x: hidden;
@ -11,8 +10,8 @@ body{
top: 0px;
height: 100%;
z-index: -1;
margin-left: -8px;
}
#front{
position: absolute;
top: 200px;

View File

@ -1,15 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href='http://fonts.googleapis.com/css?family=Roboto+Slab' rel='stylesheet' type='text/css'>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script src="js/jquery.js"></script>
<script src="js/two.min.js"></script>
<script src="js/randomColor.js"></script>
<style type="text/css">
.eq,#result,p {
.eq, #result, p {
display: inline;
margin:0px;
padding:0px;
@ -69,7 +69,7 @@
<div id="front">
<h2>Reverse Polish Notation Calculator</h2>
<p>*&nbsp;&nbsp;For Single number operations, only use first field</p>
<form id="calculator" oninpt="Calculate()">
<form id="calculator" oninput="Calculate()">
<input name="a" type="number" value="0"/>
<input name="b" type="number" value="0"/>
<select name="selector" onchange="Calculate()">
@ -90,6 +90,8 @@
<output id="result" name="c" for="x y">0</output>
</form>
<h4> &copy;&nbsp;Paul Walko&nbsp;2014</h4>
<a href="http://www.w3.org/html/logo/"><img src="http://www.w3.org/html/logo/badge/html5-badge-h-css3-semantics.png" width="165" height="64" alt="HTML5 Powered with CSS3 / Styling, and Semantics" title="HTML5 Powered with CSS3 / Styling, and Semantics">
</a>
</div>
<script type="text/javascript" src="js/background2.js"></script>
</body>

View File

@ -4,7 +4,7 @@ var main;
function start(){
var c=document.getElementById("screen");
var screen = new Screen("100%","585",c);
var screen = new Screen("100%","590",c);
main = new backgrounds(screen);
if(Math.random()>.7)
main.addScene(15000, new lighting());