├── .github └── workflows │ └── nodes.yml ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── assets └── images │ ├── border-image-slice.png │ └── chrome-min-fontsize.jpg ├── avatar ├── README.md ├── index.html └── style.css ├── calendar ├── index.html ├── index.js ├── readme.md └── style.css ├── clock ├── index.html ├── index.js └── style.css ├── coupons ├── README.md ├── img │ ├── Mcdonalds-icon.svg │ ├── cus-dashed-hori.svg │ ├── cus-dashed.svg │ ├── iphone-statusbar.svg │ ├── kfc-icon.svg │ ├── qrcode.png │ └── starbucks-icon.svg ├── index.html ├── index.js └── style.css ├── drawing ├── img │ ├── eraser-fill.svg │ └── pencil-black.svg ├── index.html ├── index.js └── style.css ├── loading ├── index.html └── style.css ├── notes ├── README.md ├── index.html ├── index.js └── style.css ├── numberKeyboard ├── index.html ├── index.js └── style.css ├── package.json ├── progress ├── index.html ├── index.js └── style.css ├── randomColor ├── color.css ├── color.html ├── color.js ├── secondary.css ├── secondary.html └── secondary.js ├── shape ├── README.md ├── index.html ├── index.js └── style.css ├── sidemenu ├── README.md ├── index.html ├── index.js └── style.css ├── streamerLight-button-2 ├── README.md ├── index.html └── sytle.css ├── streamerLight-button ├── index.html └── style.css ├── switch ├── img │ ├── moon-icon.svg │ └── sun-icon.svg ├── index.html ├── index.js └── style.css ├── tabbar ├── README.md ├── index.html ├── index.js └── style.css └── toss_icons ├── README.md ├── icon.mp3 ├── img ├── icon-back.png └── icon-up.png ├── index.html ├── index.js └── style.css /.github/workflows/nodes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/.github/workflows/nodes.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .Ds_Store -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/border-image-slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/assets/images/border-image-slice.png -------------------------------------------------------------------------------- /assets/images/chrome-min-fontsize.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/assets/images/chrome-min-fontsize.jpg -------------------------------------------------------------------------------- /avatar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/avatar/README.md -------------------------------------------------------------------------------- /avatar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/avatar/index.html -------------------------------------------------------------------------------- /avatar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/avatar/style.css -------------------------------------------------------------------------------- /calendar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/calendar/index.html -------------------------------------------------------------------------------- /calendar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/calendar/index.js -------------------------------------------------------------------------------- /calendar/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/calendar/readme.md -------------------------------------------------------------------------------- /calendar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/calendar/style.css -------------------------------------------------------------------------------- /clock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/clock/index.html -------------------------------------------------------------------------------- /clock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/clock/index.js -------------------------------------------------------------------------------- /clock/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/clock/style.css -------------------------------------------------------------------------------- /coupons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/coupons/README.md -------------------------------------------------------------------------------- /coupons/img/Mcdonalds-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/coupons/img/Mcdonalds-icon.svg -------------------------------------------------------------------------------- /coupons/img/cus-dashed-hori.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/coupons/img/cus-dashed-hori.svg -------------------------------------------------------------------------------- /coupons/img/cus-dashed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/coupons/img/cus-dashed.svg -------------------------------------------------------------------------------- /coupons/img/iphone-statusbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/coupons/img/iphone-statusbar.svg -------------------------------------------------------------------------------- /coupons/img/kfc-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/coupons/img/kfc-icon.svg -------------------------------------------------------------------------------- /coupons/img/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/coupons/img/qrcode.png -------------------------------------------------------------------------------- /coupons/img/starbucks-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/coupons/img/starbucks-icon.svg -------------------------------------------------------------------------------- /coupons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/coupons/index.html -------------------------------------------------------------------------------- /coupons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/coupons/index.js -------------------------------------------------------------------------------- /coupons/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/coupons/style.css -------------------------------------------------------------------------------- /drawing/img/eraser-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/drawing/img/eraser-fill.svg -------------------------------------------------------------------------------- /drawing/img/pencil-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/drawing/img/pencil-black.svg -------------------------------------------------------------------------------- /drawing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/drawing/index.html -------------------------------------------------------------------------------- /drawing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/drawing/index.js -------------------------------------------------------------------------------- /drawing/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/drawing/style.css -------------------------------------------------------------------------------- /loading/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/loading/index.html -------------------------------------------------------------------------------- /loading/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/loading/style.css -------------------------------------------------------------------------------- /notes/README.md: -------------------------------------------------------------------------------- 1 | 设计稿 [Link](https://js.design/f/XJtiP7?p=-qs48UFHCd) -------------------------------------------------------------------------------- /notes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/notes/index.html -------------------------------------------------------------------------------- /notes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/notes/index.js -------------------------------------------------------------------------------- /notes/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/notes/style.css -------------------------------------------------------------------------------- /numberKeyboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/numberKeyboard/index.html -------------------------------------------------------------------------------- /numberKeyboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/numberKeyboard/index.js -------------------------------------------------------------------------------- /numberKeyboard/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/numberKeyboard/style.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/package.json -------------------------------------------------------------------------------- /progress/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/progress/index.html -------------------------------------------------------------------------------- /progress/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/progress/index.js -------------------------------------------------------------------------------- /progress/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/progress/style.css -------------------------------------------------------------------------------- /randomColor/color.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/randomColor/color.css -------------------------------------------------------------------------------- /randomColor/color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/randomColor/color.html -------------------------------------------------------------------------------- /randomColor/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/randomColor/color.js -------------------------------------------------------------------------------- /randomColor/secondary.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/randomColor/secondary.css -------------------------------------------------------------------------------- /randomColor/secondary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/randomColor/secondary.html -------------------------------------------------------------------------------- /randomColor/secondary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/randomColor/secondary.js -------------------------------------------------------------------------------- /shape/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/shape/README.md -------------------------------------------------------------------------------- /shape/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/shape/index.html -------------------------------------------------------------------------------- /shape/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/shape/index.js -------------------------------------------------------------------------------- /shape/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/shape/style.css -------------------------------------------------------------------------------- /sidemenu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/sidemenu/README.md -------------------------------------------------------------------------------- /sidemenu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/sidemenu/index.html -------------------------------------------------------------------------------- /sidemenu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/sidemenu/index.js -------------------------------------------------------------------------------- /sidemenu/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/sidemenu/style.css -------------------------------------------------------------------------------- /streamerLight-button-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/streamerLight-button-2/README.md -------------------------------------------------------------------------------- /streamerLight-button-2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/streamerLight-button-2/index.html -------------------------------------------------------------------------------- /streamerLight-button-2/sytle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/streamerLight-button-2/sytle.css -------------------------------------------------------------------------------- /streamerLight-button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/streamerLight-button/index.html -------------------------------------------------------------------------------- /streamerLight-button/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/streamerLight-button/style.css -------------------------------------------------------------------------------- /switch/img/moon-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/switch/img/moon-icon.svg -------------------------------------------------------------------------------- /switch/img/sun-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/switch/img/sun-icon.svg -------------------------------------------------------------------------------- /switch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/switch/index.html -------------------------------------------------------------------------------- /switch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/switch/index.js -------------------------------------------------------------------------------- /switch/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/switch/style.css -------------------------------------------------------------------------------- /tabbar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/tabbar/README.md -------------------------------------------------------------------------------- /tabbar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/tabbar/index.html -------------------------------------------------------------------------------- /tabbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/tabbar/index.js -------------------------------------------------------------------------------- /tabbar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/tabbar/style.css -------------------------------------------------------------------------------- /toss_icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/toss_icons/README.md -------------------------------------------------------------------------------- /toss_icons/icon.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/toss_icons/icon.mp3 -------------------------------------------------------------------------------- /toss_icons/img/icon-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/toss_icons/img/icon-back.png -------------------------------------------------------------------------------- /toss_icons/img/icon-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/toss_icons/img/icon-up.png -------------------------------------------------------------------------------- /toss_icons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/toss_icons/index.html -------------------------------------------------------------------------------- /toss_icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/toss_icons/index.js -------------------------------------------------------------------------------- /toss_icons/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiroLee/html_css_javascript/HEAD/toss_icons/style.css --------------------------------------------------------------------------------