From 3dbc2fd147aa7763497de78b0d52923119afc72a Mon Sep 17 00:00:00 2001 From: RainSunMee Date: Sun, 13 Oct 2019 16:37:43 +0800 Subject: [PATCH] 20191013class --- 20191009/20191009.md | 17 +++++++------ 20191013/20191013.md | 25 +++++++++++++++++++- 20191013/setTimeout.html | 28 ++++++++++++++++++++++ 20191013/setTimeout案例.html | 46 ++++++++++++++++++++++++++++++++++++ 20191013/渐变案例.html | 36 ++++++++++++++++++++++++++++ README.md | 11 +++++++++ 6 files changed, 155 insertions(+), 8 deletions(-) create mode 100644 20191013/setTimeout.html create mode 100644 20191013/setTimeout案例.html create mode 100644 20191013/渐变案例.html diff --git a/20191009/20191009.md b/20191009/20191009.md index 12f28ef..28d5ac0 100644 --- a/20191009/20191009.md +++ b/20191009/20191009.md @@ -36,10 +36,13 @@ * `back()` 回退 * `forward()` 前进 -* 定时器 - * `setInterval(,time)` - * function: 函数体 - * time: 每次重复的时间 - * return:IntervalId 定时器ID,用于清空定时器 - * `clearInterval(timerId)` - * timerId: 定时器ID \ No newline at end of file +* `setInterval(,time)` + * function: 函数体 + * time: 每次重复的时间 + * return:IntervalId 定时器ID,用于清空定时器 + +* `clearInterval(timerId)` + * timerId: 定时器ID + + +* 感谢高同学提供的html文件,阿里嘎多 \ No newline at end of file diff --git a/20191013/20191013.md b/20191013/20191013.md index 1df76ff..ca97868 100644 --- a/20191013/20191013.md +++ b/20191013/20191013.md @@ -3,4 +3,27 @@ ![js](https://img.shields.io/badge/language-js-orange.svg) * 复习上节内容 -[linkToHtml](./test1.html) \ No newline at end of file +[linkToHtml](./test1.html) + +* setTimeout +[linkToHtml](./setTimeout.html) + * `setTimeout(,time)` 一次性定时器 + * function: 函数体 + * time: 每次重复的时间 + * return timerID 该定时器ID,用于清除定时器 + * `clearTimeout(timerID)` 清除定时器 + * timerID 定时器ID + +* setTimeout案例 +[linkToHtml](./setTimeout案例.html) +* input type="hidden" 创建隐藏域,将不想被用户知道还想发送的东西放在里边 + +* 表单属性操作 + * 表单中属性名等于属性值,html表单可以简写 + * js中操作属性时,值为Boolean + +* 渐变案例 +[linkToHtml](./渐变案例.html) + +* 不要使用js进行小数计算,精度问题 + \ No newline at end of file diff --git a/20191013/setTimeout.html b/20191013/setTimeout.html new file mode 100644 index 0000000..c7c66bb --- /dev/null +++ b/20191013/setTimeout.html @@ -0,0 +1,28 @@ + + + + + + + Document + + + + + + + \ No newline at end of file diff --git a/20191013/setTimeout案例.html b/20191013/setTimeout案例.html new file mode 100644 index 0000000..a11fa03 --- /dev/null +++ b/20191013/setTimeout案例.html @@ -0,0 +1,46 @@ + + + + + + + Document + + + + + + + + \ No newline at end of file diff --git a/20191013/渐变案例.html b/20191013/渐变案例.html new file mode 100644 index 0000000..c329fe7 --- /dev/null +++ b/20191013/渐变案例.html @@ -0,0 +1,36 @@ + + + + + + + Document + + + +
+ + + \ No newline at end of file diff --git a/README.md b/README.md index d869a82..92d2f63 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,9 @@ * 给任意事件解绑监听器封装函数 * 阻止事件冒泡 +[上课视频链接](https://pan.baidu.com/s/1x8Bedgte67XhVMjLImboZw) +提取码:lzcc + --- ## 20190926 @@ -22,6 +25,8 @@ * e.type 获取当前事件 * a标签 href属性为 javascript:; 阻止默认事件 +* [上课视频链接](https://pan.baidu.com/s/1o0cJLaZeUlyeqZVHdOjWGw) +提取码:txxm --- ## 20191009 @@ -32,7 +37,10 @@ * window * history * location +* setInterval +* [上课视频链接](https://pan.baidu.com/s/1ANHcpZAG7c5wXo5eHX-y-w) +提取码:9liy --- ## 20191013 @@ -40,4 +48,7 @@ ![js](https://img.shields.io/badge/language-js-orange.svg) [linkToMd](./20191013/20191013.md) +* 复习上节内容 +* setTimeout +* setTimeout案例