├── .gitattributes ├── README.md ├── document ├── README-[en].md ├── README-[zh-cn].md └── image │ ├── en.png │ └── zh-cn.png └── project ├── chinese ├── 404 │ ├── asset │ │ ├── Logo-Samll.png │ │ ├── cat.png │ │ └── what.png │ ├── css │ │ ├── animation │ │ │ └── menu.css │ │ ├── media │ │ │ └── media.css │ │ └── style │ │ │ ├── initial.css │ │ │ ├── main.css │ │ │ └── menu.css │ ├── favicon.ico │ ├── index.html │ └── js │ │ ├── script.js │ │ ├── script.ts │ │ └── tsconfig.json ├── asset │ ├── audio │ │ ├── AddOrLessNumber.wav │ │ ├── ButtonDown.wav │ │ ├── ButtonUp.wav │ │ ├── CatDown-01.wav │ │ ├── CatDown-02.wav │ │ ├── CatDown-03.wav │ │ ├── CatUp-01.wav │ │ ├── CatUp-02.wav │ │ ├── CatUp-03.wav │ │ └── Complete.mp3 │ ├── font │ │ └── MaybeCuteFont.otf │ └── image │ │ ├── cat │ │ ├── BlackCat-Body.png │ │ ├── BlackCat-CloseMouth.png │ │ ├── BlackCat-OpenMouth.png │ │ ├── BlackCat-Rope.png │ │ ├── YellowCat-Body.png │ │ ├── YellowCat-CloseMouth.png │ │ ├── YellowCat-Hand.png │ │ ├── YellowCat-OpenMouth.png │ │ └── YellowCat-Rope.png │ │ ├── document │ │ ├── CloseButton.png │ │ ├── Download-CN.png │ │ ├── Download-EN.png │ │ ├── DropDownButton.png │ │ ├── Other-CN.png │ │ ├── Other-EN.png │ │ ├── WhatIsIt-CN.png │ │ ├── WhatIsIt-EN.png │ │ ├── box-01.png │ │ ├── box-02.png │ │ ├── box-03.png │ │ ├── bubble-01.png │ │ ├── bubble-02.png │ │ └── bubble-03.png │ │ ├── logo │ │ ├── Logo-Samll.png │ │ └── Logo.png │ │ ├── other │ │ ├── AppInfo.png │ │ ├── Close.png │ │ ├── DivideLine.png │ │ ├── Github.png │ │ ├── Minimum.png │ │ ├── Setting.png │ │ ├── Staff.png │ │ ├── UpDownButton-Down.png │ │ ├── UpDownButton-Up.png │ │ ├── Version.png │ │ ├── WavePoint.png │ │ └── WhiteArrow.png │ │ └── text │ │ ├── chinese │ │ ├── Chinese.png │ │ ├── Pause.png │ │ ├── Paused.png │ │ ├── Reset.png │ │ ├── Resume.png │ │ ├── SettingTitle.png │ │ ├── Start.png │ │ ├── StartLine.png │ │ └── TimeIsUp.png │ │ └── english │ │ ├── English.png │ │ ├── Pause.png │ │ ├── Paused.png │ │ ├── Reset.png │ │ ├── Resume.png │ │ ├── SettingTitle.png │ │ ├── Start.png │ │ ├── StartLine.png │ │ └── TimeIsUp.png ├── css │ ├── media │ │ └── media.css │ ├── other │ │ ├── animation │ │ │ ├── navigationBar.css │ │ │ └── topMenu.css │ │ └── style │ │ │ ├── background.css │ │ │ ├── logo.css │ │ │ ├── main.css │ │ │ ├── navigationBar.css │ │ │ └── topMenu.css │ └── timer │ │ ├── animation │ │ ├── countdownUi.css │ │ ├── settingUi.css │ │ ├── timingUi.css │ │ └── titleBarUi.css │ │ ├── other │ │ ├── font.css │ │ └── initial.css │ │ └── style │ │ ├── countdownUi.css │ │ ├── settingUi.css │ │ ├── timerApp.css │ │ ├── timingUi.css │ │ └── titleBarUi.css ├── download │ ├── asset │ │ ├── Cat.png │ │ ├── EasyCatTimer-v1.0.1.zip │ │ └── Logo-Samll.png │ ├── css │ │ ├── animation │ │ │ ├── main.css │ │ │ └── menu.css │ │ ├── media │ │ │ └── media.css │ │ └── style │ │ │ ├── initial.css │ │ │ ├── main.css │ │ │ └── menu.css │ ├── favicon.ico │ ├── index.html │ └── js │ │ ├── script.js │ │ ├── script.ts │ │ └── tsconfig.json ├── favicon.ico ├── index.html ├── js │ ├── other │ │ ├── other │ │ │ ├── SupportIosTool.js │ │ │ ├── SupportIosTool.ts │ │ │ ├── SupportMobileTool.js │ │ │ └── SupportMobileTool.ts │ │ ├── otherApp.js │ │ ├── otherApp.ts │ │ └── ui │ │ │ ├── otherUi.js │ │ │ └── otherUi.ts │ ├── timer │ │ ├── data │ │ │ ├── datas.js │ │ │ └── datas.ts │ │ ├── other │ │ │ ├── enums.js │ │ │ ├── enums.ts │ │ │ ├── tools.js │ │ │ └── tools.ts │ │ ├── struct │ │ │ ├── time.js │ │ │ └── time.ts │ │ ├── system │ │ │ ├── audioSystem.js │ │ │ ├── audioSystem.ts │ │ │ ├── saveSystem.js │ │ │ ├── saveSystem.ts │ │ │ ├── systems.js │ │ │ ├── systems.ts │ │ │ ├── timeSystem.js │ │ │ └── timeSystem.ts │ │ ├── timerApp.js │ │ ├── timerApp.ts │ │ └── ui │ │ │ ├── countdownUi.js │ │ │ ├── countdownUi.ts │ │ │ ├── settingUi.js │ │ │ ├── settingUi.ts │ │ │ ├── timingUi.js │ │ │ ├── timingUi.ts │ │ │ ├── titleBarUi.js │ │ │ ├── titleBarUi.ts │ │ │ ├── uis.js │ │ │ └── uis.ts │ ├── tsconfig.json │ ├── webManager.js │ └── webManager.ts └── what-is-it │ ├── asset │ ├── Logo-Samll.png │ ├── Timer.mp4 │ └── Timer.png │ ├── css │ ├── animation │ │ ├── image.css │ │ └── menu.css │ ├── media │ │ └── media.css │ └── style │ │ ├── content.css │ │ ├── image.css │ │ ├── initial.css │ │ ├── menu.css │ │ └── video.css │ ├── favicon.ico │ ├── index.html │ └── js │ ├── script.js │ ├── script.ts │ └── tsconfig.json └── english ├── 404 ├── asset │ ├── Logo-Samll.png │ ├── cat.png │ └── what.png ├── css │ ├── animation │ │ └── menu.css │ ├── media │ │ └── media.css │ └── style │ │ ├── initial.css │ │ ├── main.css │ │ └── menu.css ├── favicon.ico ├── index.html └── js │ ├── script.js │ ├── script.ts │ └── tsconfig.json ├── asset ├── audio │ ├── AddOrLessNumber.wav │ ├── ButtonDown.wav │ ├── ButtonUp.wav │ ├── CatDown-01.wav │ ├── CatDown-02.wav │ ├── CatDown-03.wav │ ├── CatUp-01.wav │ ├── CatUp-02.wav │ ├── CatUp-03.wav │ └── Complete.mp3 ├── font │ └── MaybeCuteFont.otf └── image │ ├── cat │ ├── BlackCat-Body.png │ ├── BlackCat-CloseMouth.png │ ├── BlackCat-OpenMouth.png │ ├── BlackCat-Rope.png │ ├── YellowCat-Body.png │ ├── YellowCat-CloseMouth.png │ ├── YellowCat-Hand.png │ ├── YellowCat-OpenMouth.png │ └── YellowCat-Rope.png │ ├── document │ ├── CloseButton.png │ ├── Download-CN.png │ ├── Download-EN.png │ ├── DropDownButton.png │ ├── Other-CN.png │ ├── Other-EN.png │ ├── WhatIsIt-CN.png │ ├── WhatIsIt-EN.png │ ├── box-01.png │ ├── box-02.png │ ├── box-03.png │ ├── bubble-01.png │ ├── bubble-02.png │ └── bubble-03.png │ ├── logo │ ├── Logo-Samll.png │ └── Logo.png │ ├── other │ ├── AppInfo.png │ ├── Close.png │ ├── DivideLine.png │ ├── Github.png │ ├── Minimum.png │ ├── Setting.png │ ├── Staff.png │ ├── UpDownButton-Down.png │ ├── UpDownButton-Up.png │ ├── Version.png │ ├── WavePoint.png │ └── WhiteArrow.png │ └── text │ ├── chinese │ ├── Chinese.png │ ├── Pause.png │ ├── Paused.png │ ├── Reset.png │ ├── Resume.png │ ├── SettingTitle.png │ ├── Start.png │ ├── StartLine.png │ └── TimeIsUp.png │ └── english │ ├── English.png │ ├── Pause.png │ ├── Paused.png │ ├── Reset.png │ ├── Resume.png │ ├── SettingTitle.png │ ├── Start.png │ ├── StartLine.png │ └── TimeIsUp.png ├── css ├── media │ └── media.css ├── other │ ├── animation │ │ ├── navigationBar.css │ │ └── topMenu.css │ └── style │ │ ├── background.css │ │ ├── logo.css │ │ ├── main.css │ │ ├── navigationBar.css │ │ └── topMenu.css └── timer │ ├── animation │ ├── countdownUi.css │ ├── settingUi.css │ ├── timingUi.css │ └── titleBarUi.css │ ├── other │ ├── font.css │ └── initial.css │ └── style │ ├── countdownUi.css │ ├── settingUi.css │ ├── timerApp.css │ ├── timingUi.css │ └── titleBarUi.css ├── download ├── asset │ ├── Cat.png │ ├── EasyCatTimer-v1.0.1.zip │ └── Logo-Samll.png ├── css │ ├── animation │ │ ├── main.css │ │ └── menu.css │ ├── media │ │ └── media.css │ └── style │ │ ├── initial.css │ │ ├── main.css │ │ └── menu.css ├── favicon.ico ├── index.html └── js │ ├── script.js │ ├── script.ts │ └── tsconfig.json ├── favicon.ico ├── index.html ├── js ├── other │ ├── other │ │ ├── SupportIosTool.js │ │ ├── SupportIosTool.ts │ │ ├── SupportMobileTool.js │ │ └── SupportMobileTool.ts │ ├── otherApp.js │ ├── otherApp.ts │ └── ui │ │ ├── otherUi.js │ │ └── otherUi.ts ├── timer │ ├── data │ │ ├── datas.js │ │ └── datas.ts │ ├── other │ │ ├── enums.js │ │ ├── enums.ts │ │ ├── tools.js │ │ └── tools.ts │ ├── struct │ │ ├── time.js │ │ └── time.ts │ ├── system │ │ ├── audioSystem.js │ │ ├── audioSystem.ts │ │ ├── saveSystem.js │ │ ├── saveSystem.ts │ │ ├── systems.js │ │ ├── systems.ts │ │ ├── timeSystem.js │ │ └── timeSystem.ts │ ├── timerApp.js │ ├── timerApp.ts │ └── ui │ │ ├── countdownUi.js │ │ ├── countdownUi.ts │ │ ├── settingUi.js │ │ ├── settingUi.ts │ │ ├── timingUi.js │ │ ├── timingUi.ts │ │ ├── titleBarUi.js │ │ ├── titleBarUi.ts │ │ ├── uis.js │ │ └── uis.ts ├── tsconfig.json ├── webManager.js └── webManager.ts └── what-is-it ├── asset ├── Logo-Samll.png ├── Timer.mp4 └── Timer.png ├── css ├── animation │ ├── image.css │ └── menu.css ├── media │ └── media.css └── style │ ├── content.css │ ├── image.css │ ├── initial.css │ ├── menu.css │ └── video.css ├── favicon.ico ├── index.html └── js ├── script.js ├── script.ts └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/README.md -------------------------------------------------------------------------------- /document/README-[en].md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/document/README-[en].md -------------------------------------------------------------------------------- /document/README-[zh-cn].md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/document/README-[zh-cn].md -------------------------------------------------------------------------------- /document/image/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/document/image/en.png -------------------------------------------------------------------------------- /document/image/zh-cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/document/image/zh-cn.png -------------------------------------------------------------------------------- /project/chinese/404/asset/Logo-Samll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/404/asset/Logo-Samll.png -------------------------------------------------------------------------------- /project/chinese/404/asset/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/404/asset/cat.png -------------------------------------------------------------------------------- /project/chinese/404/asset/what.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/404/asset/what.png -------------------------------------------------------------------------------- /project/chinese/404/css/animation/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/404/css/animation/menu.css -------------------------------------------------------------------------------- /project/chinese/404/css/media/media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/404/css/media/media.css -------------------------------------------------------------------------------- /project/chinese/404/css/style/initial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/404/css/style/initial.css -------------------------------------------------------------------------------- /project/chinese/404/css/style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/404/css/style/main.css -------------------------------------------------------------------------------- /project/chinese/404/css/style/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/404/css/style/menu.css -------------------------------------------------------------------------------- /project/chinese/404/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/404/favicon.ico -------------------------------------------------------------------------------- /project/chinese/404/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/404/index.html -------------------------------------------------------------------------------- /project/chinese/404/js/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/chinese/404/js/script.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/chinese/404/js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/404/js/tsconfig.json -------------------------------------------------------------------------------- /project/chinese/asset/audio/AddOrLessNumber.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/audio/AddOrLessNumber.wav -------------------------------------------------------------------------------- /project/chinese/asset/audio/ButtonDown.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/audio/ButtonDown.wav -------------------------------------------------------------------------------- /project/chinese/asset/audio/ButtonUp.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/audio/ButtonUp.wav -------------------------------------------------------------------------------- /project/chinese/asset/audio/CatDown-01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/audio/CatDown-01.wav -------------------------------------------------------------------------------- /project/chinese/asset/audio/CatDown-02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/audio/CatDown-02.wav -------------------------------------------------------------------------------- /project/chinese/asset/audio/CatDown-03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/audio/CatDown-03.wav -------------------------------------------------------------------------------- /project/chinese/asset/audio/CatUp-01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/audio/CatUp-01.wav -------------------------------------------------------------------------------- /project/chinese/asset/audio/CatUp-02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/audio/CatUp-02.wav -------------------------------------------------------------------------------- /project/chinese/asset/audio/CatUp-03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/audio/CatUp-03.wav -------------------------------------------------------------------------------- /project/chinese/asset/audio/Complete.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/audio/Complete.mp3 -------------------------------------------------------------------------------- /project/chinese/asset/font/MaybeCuteFont.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/font/MaybeCuteFont.otf -------------------------------------------------------------------------------- /project/chinese/asset/image/cat/BlackCat-Body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/cat/BlackCat-Body.png -------------------------------------------------------------------------------- /project/chinese/asset/image/cat/BlackCat-CloseMouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/cat/BlackCat-CloseMouth.png -------------------------------------------------------------------------------- /project/chinese/asset/image/cat/BlackCat-OpenMouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/cat/BlackCat-OpenMouth.png -------------------------------------------------------------------------------- /project/chinese/asset/image/cat/BlackCat-Rope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/cat/BlackCat-Rope.png -------------------------------------------------------------------------------- /project/chinese/asset/image/cat/YellowCat-Body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/cat/YellowCat-Body.png -------------------------------------------------------------------------------- /project/chinese/asset/image/cat/YellowCat-CloseMouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/cat/YellowCat-CloseMouth.png -------------------------------------------------------------------------------- /project/chinese/asset/image/cat/YellowCat-Hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/cat/YellowCat-Hand.png -------------------------------------------------------------------------------- /project/chinese/asset/image/cat/YellowCat-OpenMouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/cat/YellowCat-OpenMouth.png -------------------------------------------------------------------------------- /project/chinese/asset/image/cat/YellowCat-Rope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/cat/YellowCat-Rope.png -------------------------------------------------------------------------------- /project/chinese/asset/image/document/CloseButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/document/CloseButton.png -------------------------------------------------------------------------------- /project/chinese/asset/image/document/Download-CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/document/Download-CN.png -------------------------------------------------------------------------------- /project/chinese/asset/image/document/Download-EN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/document/Download-EN.png -------------------------------------------------------------------------------- /project/chinese/asset/image/document/DropDownButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/document/DropDownButton.png -------------------------------------------------------------------------------- /project/chinese/asset/image/document/Other-CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/document/Other-CN.png -------------------------------------------------------------------------------- /project/chinese/asset/image/document/Other-EN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/document/Other-EN.png -------------------------------------------------------------------------------- /project/chinese/asset/image/document/WhatIsIt-CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/document/WhatIsIt-CN.png -------------------------------------------------------------------------------- /project/chinese/asset/image/document/WhatIsIt-EN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/document/WhatIsIt-EN.png -------------------------------------------------------------------------------- /project/chinese/asset/image/document/box-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/document/box-01.png -------------------------------------------------------------------------------- /project/chinese/asset/image/document/box-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/document/box-02.png -------------------------------------------------------------------------------- /project/chinese/asset/image/document/box-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/document/box-03.png -------------------------------------------------------------------------------- /project/chinese/asset/image/document/bubble-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/document/bubble-01.png -------------------------------------------------------------------------------- /project/chinese/asset/image/document/bubble-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/document/bubble-02.png -------------------------------------------------------------------------------- /project/chinese/asset/image/document/bubble-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/document/bubble-03.png -------------------------------------------------------------------------------- /project/chinese/asset/image/logo/Logo-Samll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/logo/Logo-Samll.png -------------------------------------------------------------------------------- /project/chinese/asset/image/logo/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/logo/Logo.png -------------------------------------------------------------------------------- /project/chinese/asset/image/other/AppInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/other/AppInfo.png -------------------------------------------------------------------------------- /project/chinese/asset/image/other/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/other/Close.png -------------------------------------------------------------------------------- /project/chinese/asset/image/other/DivideLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/other/DivideLine.png -------------------------------------------------------------------------------- /project/chinese/asset/image/other/Github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/other/Github.png -------------------------------------------------------------------------------- /project/chinese/asset/image/other/Minimum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/other/Minimum.png -------------------------------------------------------------------------------- /project/chinese/asset/image/other/Setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/other/Setting.png -------------------------------------------------------------------------------- /project/chinese/asset/image/other/Staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/other/Staff.png -------------------------------------------------------------------------------- /project/chinese/asset/image/other/UpDownButton-Down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/other/UpDownButton-Down.png -------------------------------------------------------------------------------- /project/chinese/asset/image/other/UpDownButton-Up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/other/UpDownButton-Up.png -------------------------------------------------------------------------------- /project/chinese/asset/image/other/Version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/other/Version.png -------------------------------------------------------------------------------- /project/chinese/asset/image/other/WavePoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/other/WavePoint.png -------------------------------------------------------------------------------- /project/chinese/asset/image/other/WhiteArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/other/WhiteArrow.png -------------------------------------------------------------------------------- /project/chinese/asset/image/text/chinese/Chinese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/text/chinese/Chinese.png -------------------------------------------------------------------------------- /project/chinese/asset/image/text/chinese/Pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/text/chinese/Pause.png -------------------------------------------------------------------------------- /project/chinese/asset/image/text/chinese/Paused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/text/chinese/Paused.png -------------------------------------------------------------------------------- /project/chinese/asset/image/text/chinese/Reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/text/chinese/Reset.png -------------------------------------------------------------------------------- /project/chinese/asset/image/text/chinese/Resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/text/chinese/Resume.png -------------------------------------------------------------------------------- /project/chinese/asset/image/text/chinese/SettingTitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/text/chinese/SettingTitle.png -------------------------------------------------------------------------------- /project/chinese/asset/image/text/chinese/Start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/text/chinese/Start.png -------------------------------------------------------------------------------- /project/chinese/asset/image/text/chinese/StartLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/text/chinese/StartLine.png -------------------------------------------------------------------------------- /project/chinese/asset/image/text/chinese/TimeIsUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/text/chinese/TimeIsUp.png -------------------------------------------------------------------------------- /project/chinese/asset/image/text/english/English.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/text/english/English.png -------------------------------------------------------------------------------- /project/chinese/asset/image/text/english/Pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/text/english/Pause.png -------------------------------------------------------------------------------- /project/chinese/asset/image/text/english/Paused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/text/english/Paused.png -------------------------------------------------------------------------------- /project/chinese/asset/image/text/english/Reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/text/english/Reset.png -------------------------------------------------------------------------------- /project/chinese/asset/image/text/english/Resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/text/english/Resume.png -------------------------------------------------------------------------------- /project/chinese/asset/image/text/english/SettingTitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/text/english/SettingTitle.png -------------------------------------------------------------------------------- /project/chinese/asset/image/text/english/Start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/text/english/Start.png -------------------------------------------------------------------------------- /project/chinese/asset/image/text/english/StartLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/text/english/StartLine.png -------------------------------------------------------------------------------- /project/chinese/asset/image/text/english/TimeIsUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/asset/image/text/english/TimeIsUp.png -------------------------------------------------------------------------------- /project/chinese/css/media/media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/css/media/media.css -------------------------------------------------------------------------------- /project/chinese/css/other/animation/navigationBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/css/other/animation/navigationBar.css -------------------------------------------------------------------------------- /project/chinese/css/other/animation/topMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/css/other/animation/topMenu.css -------------------------------------------------------------------------------- /project/chinese/css/other/style/background.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/css/other/style/background.css -------------------------------------------------------------------------------- /project/chinese/css/other/style/logo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/css/other/style/logo.css -------------------------------------------------------------------------------- /project/chinese/css/other/style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/css/other/style/main.css -------------------------------------------------------------------------------- /project/chinese/css/other/style/navigationBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/css/other/style/navigationBar.css -------------------------------------------------------------------------------- /project/chinese/css/other/style/topMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/css/other/style/topMenu.css -------------------------------------------------------------------------------- /project/chinese/css/timer/animation/countdownUi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/css/timer/animation/countdownUi.css -------------------------------------------------------------------------------- /project/chinese/css/timer/animation/settingUi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/css/timer/animation/settingUi.css -------------------------------------------------------------------------------- /project/chinese/css/timer/animation/timingUi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/css/timer/animation/timingUi.css -------------------------------------------------------------------------------- /project/chinese/css/timer/animation/titleBarUi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/css/timer/animation/titleBarUi.css -------------------------------------------------------------------------------- /project/chinese/css/timer/other/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/css/timer/other/font.css -------------------------------------------------------------------------------- /project/chinese/css/timer/other/initial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/css/timer/other/initial.css -------------------------------------------------------------------------------- /project/chinese/css/timer/style/countdownUi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/css/timer/style/countdownUi.css -------------------------------------------------------------------------------- /project/chinese/css/timer/style/settingUi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/css/timer/style/settingUi.css -------------------------------------------------------------------------------- /project/chinese/css/timer/style/timerApp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/css/timer/style/timerApp.css -------------------------------------------------------------------------------- /project/chinese/css/timer/style/timingUi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/css/timer/style/timingUi.css -------------------------------------------------------------------------------- /project/chinese/css/timer/style/titleBarUi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/css/timer/style/titleBarUi.css -------------------------------------------------------------------------------- /project/chinese/download/asset/Cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/download/asset/Cat.png -------------------------------------------------------------------------------- /project/chinese/download/asset/EasyCatTimer-v1.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/download/asset/EasyCatTimer-v1.0.1.zip -------------------------------------------------------------------------------- /project/chinese/download/asset/Logo-Samll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/download/asset/Logo-Samll.png -------------------------------------------------------------------------------- /project/chinese/download/css/animation/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/download/css/animation/main.css -------------------------------------------------------------------------------- /project/chinese/download/css/animation/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/download/css/animation/menu.css -------------------------------------------------------------------------------- /project/chinese/download/css/media/media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/download/css/media/media.css -------------------------------------------------------------------------------- /project/chinese/download/css/style/initial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/download/css/style/initial.css -------------------------------------------------------------------------------- /project/chinese/download/css/style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/download/css/style/main.css -------------------------------------------------------------------------------- /project/chinese/download/css/style/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/download/css/style/menu.css -------------------------------------------------------------------------------- /project/chinese/download/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/download/favicon.ico -------------------------------------------------------------------------------- /project/chinese/download/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/download/index.html -------------------------------------------------------------------------------- /project/chinese/download/js/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/chinese/download/js/script.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/chinese/download/js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/download/js/tsconfig.json -------------------------------------------------------------------------------- /project/chinese/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/favicon.ico -------------------------------------------------------------------------------- /project/chinese/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/index.html -------------------------------------------------------------------------------- /project/chinese/js/other/other/SupportIosTool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/other/other/SupportIosTool.js -------------------------------------------------------------------------------- /project/chinese/js/other/other/SupportIosTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/other/other/SupportIosTool.ts -------------------------------------------------------------------------------- /project/chinese/js/other/other/SupportMobileTool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/other/other/SupportMobileTool.js -------------------------------------------------------------------------------- /project/chinese/js/other/other/SupportMobileTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/other/other/SupportMobileTool.ts -------------------------------------------------------------------------------- /project/chinese/js/other/otherApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/other/otherApp.js -------------------------------------------------------------------------------- /project/chinese/js/other/otherApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/other/otherApp.ts -------------------------------------------------------------------------------- /project/chinese/js/other/ui/otherUi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/other/ui/otherUi.js -------------------------------------------------------------------------------- /project/chinese/js/other/ui/otherUi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/other/ui/otherUi.ts -------------------------------------------------------------------------------- /project/chinese/js/timer/data/datas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/data/datas.js -------------------------------------------------------------------------------- /project/chinese/js/timer/data/datas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/data/datas.ts -------------------------------------------------------------------------------- /project/chinese/js/timer/other/enums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/other/enums.js -------------------------------------------------------------------------------- /project/chinese/js/timer/other/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/other/enums.ts -------------------------------------------------------------------------------- /project/chinese/js/timer/other/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/other/tools.js -------------------------------------------------------------------------------- /project/chinese/js/timer/other/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/other/tools.ts -------------------------------------------------------------------------------- /project/chinese/js/timer/struct/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/struct/time.js -------------------------------------------------------------------------------- /project/chinese/js/timer/struct/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/struct/time.ts -------------------------------------------------------------------------------- /project/chinese/js/timer/system/audioSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/system/audioSystem.js -------------------------------------------------------------------------------- /project/chinese/js/timer/system/audioSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/system/audioSystem.ts -------------------------------------------------------------------------------- /project/chinese/js/timer/system/saveSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/system/saveSystem.js -------------------------------------------------------------------------------- /project/chinese/js/timer/system/saveSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/system/saveSystem.ts -------------------------------------------------------------------------------- /project/chinese/js/timer/system/systems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/system/systems.js -------------------------------------------------------------------------------- /project/chinese/js/timer/system/systems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/system/systems.ts -------------------------------------------------------------------------------- /project/chinese/js/timer/system/timeSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/system/timeSystem.js -------------------------------------------------------------------------------- /project/chinese/js/timer/system/timeSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/system/timeSystem.ts -------------------------------------------------------------------------------- /project/chinese/js/timer/timerApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/timerApp.js -------------------------------------------------------------------------------- /project/chinese/js/timer/timerApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/timerApp.ts -------------------------------------------------------------------------------- /project/chinese/js/timer/ui/countdownUi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/ui/countdownUi.js -------------------------------------------------------------------------------- /project/chinese/js/timer/ui/countdownUi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/ui/countdownUi.ts -------------------------------------------------------------------------------- /project/chinese/js/timer/ui/settingUi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/ui/settingUi.js -------------------------------------------------------------------------------- /project/chinese/js/timer/ui/settingUi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/ui/settingUi.ts -------------------------------------------------------------------------------- /project/chinese/js/timer/ui/timingUi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/ui/timingUi.js -------------------------------------------------------------------------------- /project/chinese/js/timer/ui/timingUi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/ui/timingUi.ts -------------------------------------------------------------------------------- /project/chinese/js/timer/ui/titleBarUi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/ui/titleBarUi.js -------------------------------------------------------------------------------- /project/chinese/js/timer/ui/titleBarUi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/ui/titleBarUi.ts -------------------------------------------------------------------------------- /project/chinese/js/timer/ui/uis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/ui/uis.js -------------------------------------------------------------------------------- /project/chinese/js/timer/ui/uis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/timer/ui/uis.ts -------------------------------------------------------------------------------- /project/chinese/js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/tsconfig.json -------------------------------------------------------------------------------- /project/chinese/js/webManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/webManager.js -------------------------------------------------------------------------------- /project/chinese/js/webManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/js/webManager.ts -------------------------------------------------------------------------------- /project/chinese/what-is-it/asset/Logo-Samll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/what-is-it/asset/Logo-Samll.png -------------------------------------------------------------------------------- /project/chinese/what-is-it/asset/Timer.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/what-is-it/asset/Timer.mp4 -------------------------------------------------------------------------------- /project/chinese/what-is-it/asset/Timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/what-is-it/asset/Timer.png -------------------------------------------------------------------------------- /project/chinese/what-is-it/css/animation/image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/what-is-it/css/animation/image.css -------------------------------------------------------------------------------- /project/chinese/what-is-it/css/animation/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/what-is-it/css/animation/menu.css -------------------------------------------------------------------------------- /project/chinese/what-is-it/css/media/media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/what-is-it/css/media/media.css -------------------------------------------------------------------------------- /project/chinese/what-is-it/css/style/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/what-is-it/css/style/content.css -------------------------------------------------------------------------------- /project/chinese/what-is-it/css/style/image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/what-is-it/css/style/image.css -------------------------------------------------------------------------------- /project/chinese/what-is-it/css/style/initial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/what-is-it/css/style/initial.css -------------------------------------------------------------------------------- /project/chinese/what-is-it/css/style/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/what-is-it/css/style/menu.css -------------------------------------------------------------------------------- /project/chinese/what-is-it/css/style/video.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/what-is-it/css/style/video.css -------------------------------------------------------------------------------- /project/chinese/what-is-it/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/what-is-it/favicon.ico -------------------------------------------------------------------------------- /project/chinese/what-is-it/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/what-is-it/index.html -------------------------------------------------------------------------------- /project/chinese/what-is-it/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/what-is-it/js/script.js -------------------------------------------------------------------------------- /project/chinese/what-is-it/js/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/what-is-it/js/script.ts -------------------------------------------------------------------------------- /project/chinese/what-is-it/js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/chinese/what-is-it/js/tsconfig.json -------------------------------------------------------------------------------- /project/english/404/asset/Logo-Samll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/404/asset/Logo-Samll.png -------------------------------------------------------------------------------- /project/english/404/asset/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/404/asset/cat.png -------------------------------------------------------------------------------- /project/english/404/asset/what.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/404/asset/what.png -------------------------------------------------------------------------------- /project/english/404/css/animation/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/404/css/animation/menu.css -------------------------------------------------------------------------------- /project/english/404/css/media/media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/404/css/media/media.css -------------------------------------------------------------------------------- /project/english/404/css/style/initial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/404/css/style/initial.css -------------------------------------------------------------------------------- /project/english/404/css/style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/404/css/style/main.css -------------------------------------------------------------------------------- /project/english/404/css/style/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/404/css/style/menu.css -------------------------------------------------------------------------------- /project/english/404/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/404/favicon.ico -------------------------------------------------------------------------------- /project/english/404/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/404/index.html -------------------------------------------------------------------------------- /project/english/404/js/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/english/404/js/script.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/english/404/js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/404/js/tsconfig.json -------------------------------------------------------------------------------- /project/english/asset/audio/AddOrLessNumber.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/audio/AddOrLessNumber.wav -------------------------------------------------------------------------------- /project/english/asset/audio/ButtonDown.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/audio/ButtonDown.wav -------------------------------------------------------------------------------- /project/english/asset/audio/ButtonUp.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/audio/ButtonUp.wav -------------------------------------------------------------------------------- /project/english/asset/audio/CatDown-01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/audio/CatDown-01.wav -------------------------------------------------------------------------------- /project/english/asset/audio/CatDown-02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/audio/CatDown-02.wav -------------------------------------------------------------------------------- /project/english/asset/audio/CatDown-03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/audio/CatDown-03.wav -------------------------------------------------------------------------------- /project/english/asset/audio/CatUp-01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/audio/CatUp-01.wav -------------------------------------------------------------------------------- /project/english/asset/audio/CatUp-02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/audio/CatUp-02.wav -------------------------------------------------------------------------------- /project/english/asset/audio/CatUp-03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/audio/CatUp-03.wav -------------------------------------------------------------------------------- /project/english/asset/audio/Complete.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/audio/Complete.mp3 -------------------------------------------------------------------------------- /project/english/asset/font/MaybeCuteFont.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/font/MaybeCuteFont.otf -------------------------------------------------------------------------------- /project/english/asset/image/cat/BlackCat-Body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/cat/BlackCat-Body.png -------------------------------------------------------------------------------- /project/english/asset/image/cat/BlackCat-CloseMouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/cat/BlackCat-CloseMouth.png -------------------------------------------------------------------------------- /project/english/asset/image/cat/BlackCat-OpenMouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/cat/BlackCat-OpenMouth.png -------------------------------------------------------------------------------- /project/english/asset/image/cat/BlackCat-Rope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/cat/BlackCat-Rope.png -------------------------------------------------------------------------------- /project/english/asset/image/cat/YellowCat-Body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/cat/YellowCat-Body.png -------------------------------------------------------------------------------- /project/english/asset/image/cat/YellowCat-CloseMouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/cat/YellowCat-CloseMouth.png -------------------------------------------------------------------------------- /project/english/asset/image/cat/YellowCat-Hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/cat/YellowCat-Hand.png -------------------------------------------------------------------------------- /project/english/asset/image/cat/YellowCat-OpenMouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/cat/YellowCat-OpenMouth.png -------------------------------------------------------------------------------- /project/english/asset/image/cat/YellowCat-Rope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/cat/YellowCat-Rope.png -------------------------------------------------------------------------------- /project/english/asset/image/document/CloseButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/document/CloseButton.png -------------------------------------------------------------------------------- /project/english/asset/image/document/Download-CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/document/Download-CN.png -------------------------------------------------------------------------------- /project/english/asset/image/document/Download-EN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/document/Download-EN.png -------------------------------------------------------------------------------- /project/english/asset/image/document/DropDownButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/document/DropDownButton.png -------------------------------------------------------------------------------- /project/english/asset/image/document/Other-CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/document/Other-CN.png -------------------------------------------------------------------------------- /project/english/asset/image/document/Other-EN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/document/Other-EN.png -------------------------------------------------------------------------------- /project/english/asset/image/document/WhatIsIt-CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/document/WhatIsIt-CN.png -------------------------------------------------------------------------------- /project/english/asset/image/document/WhatIsIt-EN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/document/WhatIsIt-EN.png -------------------------------------------------------------------------------- /project/english/asset/image/document/box-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/document/box-01.png -------------------------------------------------------------------------------- /project/english/asset/image/document/box-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/document/box-02.png -------------------------------------------------------------------------------- /project/english/asset/image/document/box-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/document/box-03.png -------------------------------------------------------------------------------- /project/english/asset/image/document/bubble-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/document/bubble-01.png -------------------------------------------------------------------------------- /project/english/asset/image/document/bubble-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/document/bubble-02.png -------------------------------------------------------------------------------- /project/english/asset/image/document/bubble-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/document/bubble-03.png -------------------------------------------------------------------------------- /project/english/asset/image/logo/Logo-Samll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/logo/Logo-Samll.png -------------------------------------------------------------------------------- /project/english/asset/image/logo/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/logo/Logo.png -------------------------------------------------------------------------------- /project/english/asset/image/other/AppInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/other/AppInfo.png -------------------------------------------------------------------------------- /project/english/asset/image/other/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/other/Close.png -------------------------------------------------------------------------------- /project/english/asset/image/other/DivideLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/other/DivideLine.png -------------------------------------------------------------------------------- /project/english/asset/image/other/Github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/other/Github.png -------------------------------------------------------------------------------- /project/english/asset/image/other/Minimum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/other/Minimum.png -------------------------------------------------------------------------------- /project/english/asset/image/other/Setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/other/Setting.png -------------------------------------------------------------------------------- /project/english/asset/image/other/Staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/other/Staff.png -------------------------------------------------------------------------------- /project/english/asset/image/other/UpDownButton-Down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/other/UpDownButton-Down.png -------------------------------------------------------------------------------- /project/english/asset/image/other/UpDownButton-Up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/other/UpDownButton-Up.png -------------------------------------------------------------------------------- /project/english/asset/image/other/Version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/other/Version.png -------------------------------------------------------------------------------- /project/english/asset/image/other/WavePoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/other/WavePoint.png -------------------------------------------------------------------------------- /project/english/asset/image/other/WhiteArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/other/WhiteArrow.png -------------------------------------------------------------------------------- /project/english/asset/image/text/chinese/Chinese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/text/chinese/Chinese.png -------------------------------------------------------------------------------- /project/english/asset/image/text/chinese/Pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/text/chinese/Pause.png -------------------------------------------------------------------------------- /project/english/asset/image/text/chinese/Paused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/text/chinese/Paused.png -------------------------------------------------------------------------------- /project/english/asset/image/text/chinese/Reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/text/chinese/Reset.png -------------------------------------------------------------------------------- /project/english/asset/image/text/chinese/Resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/text/chinese/Resume.png -------------------------------------------------------------------------------- /project/english/asset/image/text/chinese/SettingTitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/text/chinese/SettingTitle.png -------------------------------------------------------------------------------- /project/english/asset/image/text/chinese/Start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/text/chinese/Start.png -------------------------------------------------------------------------------- /project/english/asset/image/text/chinese/StartLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/text/chinese/StartLine.png -------------------------------------------------------------------------------- /project/english/asset/image/text/chinese/TimeIsUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/text/chinese/TimeIsUp.png -------------------------------------------------------------------------------- /project/english/asset/image/text/english/English.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/text/english/English.png -------------------------------------------------------------------------------- /project/english/asset/image/text/english/Pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/text/english/Pause.png -------------------------------------------------------------------------------- /project/english/asset/image/text/english/Paused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/text/english/Paused.png -------------------------------------------------------------------------------- /project/english/asset/image/text/english/Reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/text/english/Reset.png -------------------------------------------------------------------------------- /project/english/asset/image/text/english/Resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/text/english/Resume.png -------------------------------------------------------------------------------- /project/english/asset/image/text/english/SettingTitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/text/english/SettingTitle.png -------------------------------------------------------------------------------- /project/english/asset/image/text/english/Start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/text/english/Start.png -------------------------------------------------------------------------------- /project/english/asset/image/text/english/StartLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/text/english/StartLine.png -------------------------------------------------------------------------------- /project/english/asset/image/text/english/TimeIsUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/asset/image/text/english/TimeIsUp.png -------------------------------------------------------------------------------- /project/english/css/media/media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/css/media/media.css -------------------------------------------------------------------------------- /project/english/css/other/animation/navigationBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/css/other/animation/navigationBar.css -------------------------------------------------------------------------------- /project/english/css/other/animation/topMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/css/other/animation/topMenu.css -------------------------------------------------------------------------------- /project/english/css/other/style/background.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/css/other/style/background.css -------------------------------------------------------------------------------- /project/english/css/other/style/logo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/css/other/style/logo.css -------------------------------------------------------------------------------- /project/english/css/other/style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/css/other/style/main.css -------------------------------------------------------------------------------- /project/english/css/other/style/navigationBar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/css/other/style/navigationBar.css -------------------------------------------------------------------------------- /project/english/css/other/style/topMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/css/other/style/topMenu.css -------------------------------------------------------------------------------- /project/english/css/timer/animation/countdownUi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/css/timer/animation/countdownUi.css -------------------------------------------------------------------------------- /project/english/css/timer/animation/settingUi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/css/timer/animation/settingUi.css -------------------------------------------------------------------------------- /project/english/css/timer/animation/timingUi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/css/timer/animation/timingUi.css -------------------------------------------------------------------------------- /project/english/css/timer/animation/titleBarUi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/css/timer/animation/titleBarUi.css -------------------------------------------------------------------------------- /project/english/css/timer/other/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/css/timer/other/font.css -------------------------------------------------------------------------------- /project/english/css/timer/other/initial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/css/timer/other/initial.css -------------------------------------------------------------------------------- /project/english/css/timer/style/countdownUi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/css/timer/style/countdownUi.css -------------------------------------------------------------------------------- /project/english/css/timer/style/settingUi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/css/timer/style/settingUi.css -------------------------------------------------------------------------------- /project/english/css/timer/style/timerApp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/css/timer/style/timerApp.css -------------------------------------------------------------------------------- /project/english/css/timer/style/timingUi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/css/timer/style/timingUi.css -------------------------------------------------------------------------------- /project/english/css/timer/style/titleBarUi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/css/timer/style/titleBarUi.css -------------------------------------------------------------------------------- /project/english/download/asset/Cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/download/asset/Cat.png -------------------------------------------------------------------------------- /project/english/download/asset/EasyCatTimer-v1.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/download/asset/EasyCatTimer-v1.0.1.zip -------------------------------------------------------------------------------- /project/english/download/asset/Logo-Samll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/download/asset/Logo-Samll.png -------------------------------------------------------------------------------- /project/english/download/css/animation/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/download/css/animation/main.css -------------------------------------------------------------------------------- /project/english/download/css/animation/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/download/css/animation/menu.css -------------------------------------------------------------------------------- /project/english/download/css/media/media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/download/css/media/media.css -------------------------------------------------------------------------------- /project/english/download/css/style/initial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/download/css/style/initial.css -------------------------------------------------------------------------------- /project/english/download/css/style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/download/css/style/main.css -------------------------------------------------------------------------------- /project/english/download/css/style/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/download/css/style/menu.css -------------------------------------------------------------------------------- /project/english/download/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/download/favicon.ico -------------------------------------------------------------------------------- /project/english/download/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/download/index.html -------------------------------------------------------------------------------- /project/english/download/js/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/english/download/js/script.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/english/download/js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/download/js/tsconfig.json -------------------------------------------------------------------------------- /project/english/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/favicon.ico -------------------------------------------------------------------------------- /project/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/index.html -------------------------------------------------------------------------------- /project/english/js/other/other/SupportIosTool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/other/other/SupportIosTool.js -------------------------------------------------------------------------------- /project/english/js/other/other/SupportIosTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/other/other/SupportIosTool.ts -------------------------------------------------------------------------------- /project/english/js/other/other/SupportMobileTool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/other/other/SupportMobileTool.js -------------------------------------------------------------------------------- /project/english/js/other/other/SupportMobileTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/other/other/SupportMobileTool.ts -------------------------------------------------------------------------------- /project/english/js/other/otherApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/other/otherApp.js -------------------------------------------------------------------------------- /project/english/js/other/otherApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/other/otherApp.ts -------------------------------------------------------------------------------- /project/english/js/other/ui/otherUi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/other/ui/otherUi.js -------------------------------------------------------------------------------- /project/english/js/other/ui/otherUi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/other/ui/otherUi.ts -------------------------------------------------------------------------------- /project/english/js/timer/data/datas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/data/datas.js -------------------------------------------------------------------------------- /project/english/js/timer/data/datas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/data/datas.ts -------------------------------------------------------------------------------- /project/english/js/timer/other/enums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/other/enums.js -------------------------------------------------------------------------------- /project/english/js/timer/other/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/other/enums.ts -------------------------------------------------------------------------------- /project/english/js/timer/other/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/other/tools.js -------------------------------------------------------------------------------- /project/english/js/timer/other/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/other/tools.ts -------------------------------------------------------------------------------- /project/english/js/timer/struct/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/struct/time.js -------------------------------------------------------------------------------- /project/english/js/timer/struct/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/struct/time.ts -------------------------------------------------------------------------------- /project/english/js/timer/system/audioSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/system/audioSystem.js -------------------------------------------------------------------------------- /project/english/js/timer/system/audioSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/system/audioSystem.ts -------------------------------------------------------------------------------- /project/english/js/timer/system/saveSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/system/saveSystem.js -------------------------------------------------------------------------------- /project/english/js/timer/system/saveSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/system/saveSystem.ts -------------------------------------------------------------------------------- /project/english/js/timer/system/systems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/system/systems.js -------------------------------------------------------------------------------- /project/english/js/timer/system/systems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/system/systems.ts -------------------------------------------------------------------------------- /project/english/js/timer/system/timeSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/system/timeSystem.js -------------------------------------------------------------------------------- /project/english/js/timer/system/timeSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/system/timeSystem.ts -------------------------------------------------------------------------------- /project/english/js/timer/timerApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/timerApp.js -------------------------------------------------------------------------------- /project/english/js/timer/timerApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/timerApp.ts -------------------------------------------------------------------------------- /project/english/js/timer/ui/countdownUi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/ui/countdownUi.js -------------------------------------------------------------------------------- /project/english/js/timer/ui/countdownUi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/ui/countdownUi.ts -------------------------------------------------------------------------------- /project/english/js/timer/ui/settingUi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/ui/settingUi.js -------------------------------------------------------------------------------- /project/english/js/timer/ui/settingUi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/ui/settingUi.ts -------------------------------------------------------------------------------- /project/english/js/timer/ui/timingUi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/ui/timingUi.js -------------------------------------------------------------------------------- /project/english/js/timer/ui/timingUi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/ui/timingUi.ts -------------------------------------------------------------------------------- /project/english/js/timer/ui/titleBarUi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/ui/titleBarUi.js -------------------------------------------------------------------------------- /project/english/js/timer/ui/titleBarUi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/ui/titleBarUi.ts -------------------------------------------------------------------------------- /project/english/js/timer/ui/uis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/ui/uis.js -------------------------------------------------------------------------------- /project/english/js/timer/ui/uis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/timer/ui/uis.ts -------------------------------------------------------------------------------- /project/english/js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/tsconfig.json -------------------------------------------------------------------------------- /project/english/js/webManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/webManager.js -------------------------------------------------------------------------------- /project/english/js/webManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/js/webManager.ts -------------------------------------------------------------------------------- /project/english/what-is-it/asset/Logo-Samll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/what-is-it/asset/Logo-Samll.png -------------------------------------------------------------------------------- /project/english/what-is-it/asset/Timer.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/what-is-it/asset/Timer.mp4 -------------------------------------------------------------------------------- /project/english/what-is-it/asset/Timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/what-is-it/asset/Timer.png -------------------------------------------------------------------------------- /project/english/what-is-it/css/animation/image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/what-is-it/css/animation/image.css -------------------------------------------------------------------------------- /project/english/what-is-it/css/animation/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/what-is-it/css/animation/menu.css -------------------------------------------------------------------------------- /project/english/what-is-it/css/media/media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/what-is-it/css/media/media.css -------------------------------------------------------------------------------- /project/english/what-is-it/css/style/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/what-is-it/css/style/content.css -------------------------------------------------------------------------------- /project/english/what-is-it/css/style/image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/what-is-it/css/style/image.css -------------------------------------------------------------------------------- /project/english/what-is-it/css/style/initial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/what-is-it/css/style/initial.css -------------------------------------------------------------------------------- /project/english/what-is-it/css/style/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/what-is-it/css/style/menu.css -------------------------------------------------------------------------------- /project/english/what-is-it/css/style/video.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/what-is-it/css/style/video.css -------------------------------------------------------------------------------- /project/english/what-is-it/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/what-is-it/favicon.ico -------------------------------------------------------------------------------- /project/english/what-is-it/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/what-is-it/index.html -------------------------------------------------------------------------------- /project/english/what-is-it/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/what-is-it/js/script.js -------------------------------------------------------------------------------- /project/english/what-is-it/js/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/what-is-it/js/script.ts -------------------------------------------------------------------------------- /project/english/what-is-it/js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xujiangjiang/Easy-Cat-Timer-Web/HEAD/project/english/what-is-it/js/tsconfig.json --------------------------------------------------------------------------------