简易红绿灯切换
92 |绿灯亮30s,然后黄灯亮3s,然后红灯亮30s,以此循环
93 |NaN
├── .DS_Store ├── .gitignore ├── 01好看的登录页面 ├── .vscode │ └── settings.json ├── images │ └── 00.jpg ├── index.html └── style.css ├── 02CSS3简约紫色渐变背景登录页面实现 ├── css │ └── login.css └── index.html ├── 03CSS3圆角边框登录页面实现 ├── css │ ├── bootstrap.min.css │ ├── font-awesome.min.css │ └── zzsc.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── index.html └── js │ └── jquery-1.11.0.min.js ├── 04焦点图 ├── css │ └── style.css ├── img │ ├── lunbo1.jpg │ ├── lunbo2.jpg │ ├── lunbo3.jpg │ ├── nexImg.png │ └── preImg.png ├── index.html └── js │ └── jquery.min.js ├── 05注册页面 ├── images │ └── 背景.jpg ├── lib │ └── jquery.min.js ├── login.html ├── register.css ├── register.html └── register.js ├── 06css常用布局例子 ├── 00块级&行内块元素.html ├── 01基础布局position定位.html └── 02flex布局.html ├── 07七夕祝福网页 ├── README.md ├── index.html └── static │ ├── css │ └── app.7cedb17e2dca9368be3e5d7f72423f08.css │ ├── img │ └── timg.1a8a778.jpg │ ├── js │ ├── app.76d01a000d484c70e9ca.js │ ├── manifest.7f143e2aa81f40046d60.js │ └── vendor.ccc7843f48bd0a2aeb0e.js │ └── scrollbar_arrow.png ├── 08js焦点图 ├── images │ ├── t1.png │ ├── t2.png │ ├── t3.png │ └── t4.png ├── index.html ├── lb.css └── lb.js ├── 09jsTab标签 ├── tab1.html └── tab标签.html ├── 10数字时钟 ├── index.html └── style.css ├── 11html dom节点操作 └── index.html ├── 12CSS3旋转3D旋转例子 └── 12-01旋转地球 │ ├── index.html │ ├── index.js │ ├── protect.js │ └── style.css ├── 13css3流星雨动效背景 ├── index.html └── style.css ├── 14Promise使用及手写 └── 原生Promise使用 │ └── index.html ├── 15原生js实现红绿灯效果 ├── index copy.html └── index.html ├── 16js高级demo ├── index.html └── index.js ├── 17滚动条案例 └── index.html ├── 18h5真机调试案例 ├── index.html ├── lufei.jpeg ├── lufei_1.jpeg └── lufei_2.jpeg ├── 19七夕祝福网页新 ├── onlyto │ ├── .DS_Store │ ├── css │ │ └── skystar.css │ ├── img │ │ └── skystar2.jpg │ ├── js │ │ └── skystar.js │ ├── skystar.html │ └── video │ │ └── skystar.mp4 └── 素材 │ └── 1.md ├── 20js中this指向问题及call,apply,bind的区别 └── index.html ├── 21node.js学习巩固 └── helloNodejs.js ├── 22js中的原型与原型链实践 └── index.html ├── 23气泡背景登录页面 ├── .DS_Store ├── css │ └── style.css └── index.html ├── README.md └── tests ├── 1-Promise基本使用 ├── 1-初体验.html ├── 2-Promise实践练习-fs模块.js ├── 3-Promise实践练习-AJAX请求.html ├── 4-Promise封装练习-fs模块.js ├── 5-util.promisify方法.js ├── 6-Promise封装AJAX操作.html └── resource │ └── content.txt ├── 2-Promise-API ├── 1-Promise的API-then和catch.html ├── 2-Promise的API-resolve.html ├── 3-Promise的API-reject.html ├── 4-Promise的API-all.html └── 5-Promise的API-race.html ├── 3-关键问题 ├── 1-如何修改promise对象状态.html ├── 2-能否执行多个回调.html ├── 3-改变状态与指定回调顺序问题.html ├── 4-then方法的返回结果由什么决定.html ├── 5-promise如何串联多个任务.html ├── 6-异常穿透现象是怎么回事.html └── 7-如何中断Promise链条.html ├── 4-Promise自定义封装 ├── 1-初始结构搭建 │ ├── index.html │ └── promise.js ├── 10-1异步修改状态then方法返回结果 │ ├── index.html │ └── promise.js ├── 10-2-then方法代码优化 │ ├── index.html │ └── promise.js ├── 11-catch方法与异常穿透 │ ├── index.html │ └── promise.js ├── 12-Promise.resolve │ ├── index.html │ └── promise.js ├── 13-Promise.reject │ ├── index.html │ └── promise.js ├── 14-Promise.all方法实现 │ ├── index.html │ └── promise.js ├── 15-Promise.race方法实现 │ ├── index.html │ └── promise.js ├── 16-then回调函数异步执行的实现 │ ├── index.html │ └── promise.js ├── 17-class版本封装 │ ├── index.html │ └── promise.js ├── 2-resolve与reject结构搭建 │ ├── index.html │ └── promise.js ├── 3-resolve与reject函数实现 │ ├── index.html │ └── promise.js ├── 4-throw抛出错误改变状态 │ ├── index.html │ └── promise.js ├── 5-状态只能修改一次 │ ├── index.html │ └── promise.js ├── 6-then方法执行回调 │ ├── index.html │ └── promise.js ├── 7-异步任务then方法执行回调 │ ├── index.html │ └── promise.js ├── 8-指定多个回调 │ ├── index.html │ └── promise.js └── 9-同步修改状态then方法返回结果 │ ├── index.html │ └── promise.js ├── 5-async和await ├── 1-async.html ├── 2-await.html ├── 3-async与await结合.js ├── 4-async与await结合.html └── resource │ ├── 1.html │ ├── 2.html │ └── 3.html └── 笔记.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/front-end-study-GoGoGo/template-html-css-js/5267bb56d2cd47e357b5aabc744d87c08224f307/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Build and Release Folders 2 | bin-debug/ 3 | bin-release/ 4 | [Oo]bj/ 5 | [Bb]in/ 6 | 7 | # Other files and folders 8 | .settings/ 9 | 10 | # Executables 11 | *.swf 12 | *.air 13 | *.ipa 14 | *.apk 15 | 16 | # Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties` 17 | # should NOT be excluded as they contain compiler settings and other important 18 | # information for Eclipse / Flash Builder. 19 | -------------------------------------------------------------------------------- /01好看的登录页面/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /01好看的登录页面/images/00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/front-end-study-GoGoGo/template-html-css-js/5267bb56d2cd47e357b5aabc744d87c08224f307/01好看的登录页面/images/00.jpg -------------------------------------------------------------------------------- /01好看的登录页面/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 |数字时钟 html+css+js
16 |NaN
创建一个账号? 立即登录!
35 |© 2022 All rights Reserved
40 |