工做中經常使用如下工具css
nyfedit.exe ---工做日誌記錄工具myBaseDesktop.ziphtml
XMind.exe --思惟導圖工具jquery
Notepad++ ---文本編輯及查看工具linux
Charles.exe --抓包工具(蘋果電腦上的安卓和IOS機器均可以抓包,安卓的是filder工具)oracle
SecureCRT.exe ---linux查看日誌工具eclipse
SSH Secure Shell Client ---linux查看日誌工具ide
FSCapture.exe ---錄屏工具工具
eclipse.exe ----JAVA開發工具開發工具
PLSQL Developer --oracle開發工具日誌
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>鬧鐘</title>
<script src="https://cdn.bootcss.com/jquery/1.10.2/jquery.min.js">
</script>
<script>
function datetime(){
setInterval(function(){
document.getElementById("demo").innerHTML=Date();
$("#demo").css("color","red").slideUp(2000).slideDown(2000);
if (Date()=="Thu May 31 2018 11:30:00 GMT+0800 (中國標準時間)"){
alert("休息啦");
}else if(Date()=="Thu May 31 2018 12:00:00 GMT+0800 (中國標準時間)"){
alert("吃飯啦");
}else if(Date()=="Thu May 31 2018 18:00:00 GMT+0800 (中國標準時間)"){
alert("下班啦");
}
},100);
}
</script>
<style>
#demo{
font-size:100px;
}
#demo1{
height: 222px;
width: 555px;
}
</style>
</head>
<body>
<div align="center">
<h1 id="demo"></h1>
</div>
<div align="center">
<img id="demo1" src="timg.jpg" onclick="datetime()"></img>
</div>
</body>
</html>