1. 程式人生 > >工作中常用工具

工作中常用工具

工作中常用以下工具

nyfedit.exe ---工作日誌記錄工具

 

XMind.exe   --思維導圖工具

 

Notepad++   ---文字編輯及檢視工具

 

Charles.exe   --抓包工具(蘋果電腦上的安卓和IOS機器都可以抓包,安卓的是filder工具)

 

SecureCRT.exe  ---linux檢視日誌工具

SSH Secure Shell Client  ---linux檢視日誌工具

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><