<html>
<head>
<style>
*{margin:0;padding:0;}
input{font-size:40px;font-family:"楷体";}
input[type=button]{width:60px;;margin:10px;}
input[type=text]{width:400px;text-align:right;}
div{width:400px;background:black;font-size:40px;text-align:center;margin:50px auto;}
#wunian{width:400px;text-align:left;background:blue;font-size:30px;color:white;}
#movie,#theme{width:160px;}
</style>
<script>
function btbNumberClickHander(sender){
var txtDisplay=document.getElementById("txtDisplay");
var txt=txtDisplay.value;
if(txt=="0")txt="";
txt+=sender.value;
txtDisplay.value=txt;
}
function clearTxt(){
var txtDisplay=document.getElementById("txtDisplay");
var txt=txtDisplay.value;
if(txt=="0")return;
txt="0";
txtDisplay.value=txt;
}
function backSpace(){
var txtDisplay=document.getElementById("txtDisplay");
var txt=txtDisplay.value;
if(txt.length==1)txt="0";
else txt=txt.substr(0,txt.length-1);
txtDisplay.value=txt;
}
function acquireResult(){
var txtDisplay=document.getElementById("txtDisplay");
var txt=txtDisplay.value;
var result=eval(txt);
txt+="=";
txt+=result;
txtDisplay.value=txt;
}
var i=0;
function setTextColor(){
var txtDisplay=document.getElementById("txtDisplay");
var src;
switch(i){
case 0:src="red";break;
case 1:src="blue";break;
case 3:src="green";break;
case 4:src="pink";break;
case 5:src="purple";break;
case 6:src="black";break;
}
txtDisplay.style.background=src;
i++;
if(i>6)i=0;
}
var j=0;
function setThemeColor(){
var container=document.getElementById("container");
var src;
switch(j){
case 0:src="red";break;
case 1:src="blue";break;
case 3:src="green";break;
case 4:src="pink";break;
case 5:src="purple";break;
case 6:src="black";break;
}
container.style.background=src;
j++;
if(j>6)j=0;
}
</script>
</head>
<body>
<div id="container">
<input type="text" value="勿念计算器" id="wunian" readOnly="readOnly">
<input type="text" value="0" id="txtDisplay">
<input type="button" value="0" onclick="btbNumberClickHander(this)"/>
<input type="button" value="<--" onclick="backSpace()"/>
<input type="button" value="ce" onclick="clearTxt()"/>
<input type="button" value="+" onclick="btbNumberClickHander(this)"/>
<input type="button" value="1" onclick="btbNumberClickHander(this)"/>
<input type="button" value="2" onclick="btbNumberClickHander(this)"/>
<input type="button" value="3" onclick="btbNumberClickHander(this)"/>
<input type="button" value="-" onclick="btbNumberClickHander(this)"/>
<input type="button" value="4" onclick="btbNumberClickHander(this)"/>
<input type="button" value="5" onclick="btbNumberClickHander(this)"/>
<input type="button" value="6" onclick="btbNumberClickHander(this)"/>
<input type="button" value="*" onclick="btbNumberClickHander(this)"/>
<input type="button" value="7" onclick="btbNumberClickHander(this)"/>
<input type="button" value="8" onclick="btbNumberClickHander(this)"/>
<input type="button" value="9" onclick="btbNumberClickHander(this)"/>
<input type="button" value="/" onclick="btbNumberClickHander(this)"/>
<input type="button" value="." onclick="btbNumberClickHander(this)"/>
<input type="button" value="=" onclick="acquireResult()"/>
<input type="button" value="(" onclick="btbNumberClickHander(this)"/>
<input type="button" value=")" onclick="btbNumberClickHander(this)"/>
<input type="button" value="屏幕" id="movie" onclick="setTextColor()"/>
<input type="button" value="主题" id="theme" onclick="setThemeColor()"/>
</div>
</body>
</html>
wunianisme
- 粉丝: 55
- 资源: 9
最新资源
- 一个简单的微信小程序购物车DEMO.zip
- 车身朝向检测数据集VOC+YOLO格式906张8类别.zip
- 一个生成写真照的小程序,微信云原创开发小程序 只fork不star是很没品的 .zip
- 傲天动联AE5000-E2CN2T,内置不死UBOOT
- unity算法面试-Unity面试题(包含答案)PDF
- Stata 世界各国 国家代码 三位代码代号 两位代码代号 中英文名对照 Stata
- 《微信小程序入门与实践》一书小程序来源代码.zip
- 数码管显示时间.zip
- ISIC+Rev3和Rev4行业对照.xlsx
- 【java毕业设计】志愿者服务平台源码(ssm+mysql+说明文档+LW).zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
- 1
- 2
前往页