diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/03-\347\254\224\350\256\260/README.md" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/03-\347\254\224\350\256\260/README.md" new file mode 100644 index 0000000000000000000000000000000000000000..ccdc8aa7bf7d355a837a957eaec14b49f480d997 --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/03-\347\254\224\350\256\260/README.md" @@ -0,0 +1,334 @@ +# JavaScript 基础 - 第5天 + +> 知道对象数据类型的特征,能够利用数组对象渲染页面 + +- 理解什么是对象,掌握定义对象的语法 +- 掌握数学对象的使用 + +## 对象 + +> 对象是 JavaScript 数据类型的一种,之前已经学习了数值类型、字符串类型、布尔类型、undefined。对象数据类型可以被理解成是一种数据集合。它由属性和方法两部分构成。 + +### 语法 + +声明一个对象类型的变量与之前声明一个数值或字符串类型的变量没有本质上的区别。 + +```html + + + + + JavaScript 基础 - 对象语法 + + + + + + +``` + +### 属性和访问 + +数据描述性的信息称为属性,如人的姓名、身高、年龄、性别等,一般是名词性的。 + +1. 属性都是成 对出现的,包括属性名和值,它们之间使用英文 `:` 分隔 +2. 多个属性之间使用英文 `,` 分隔 +3. 属性就是依附在对象上的变量 +4. 属性名可以使用 `""` 或 `''`,一般情况下省略,除非名称遇到特殊符号如空格、中横线等 + +```html + + + + + JavaScript 基础 - 对象语法 + + + + + + +``` + +声明对象,并添加了若干属性后,可以使用 `.` 或 `[]` 获得对象中属性对应的值,我称之为属性访问。 + +```html + + + + + JavaScript 基础 - 对象语法 + + + + + + +``` + +扩展:也可以动态为对象添加属性,动态添加与直接定义是一样的,只是语法上更灵活。 + +```html + + + + + JavaScript 基础 - 对象语法 + + + + + + +``` + +### 方法和调用 + +数据行为性的信息称为方法,如跑步、唱歌等,一般是动词性的,其本质是函数。 + +1. 方法是由方法名和函数两部分构成,它们之间使用 : 分隔 +2. 多个属性之间使用英文 `,` 分隔 +3. 方法是依附在对象中的函数 +4. 方法名可以使用 `""` 或 `''`,一般情况下省略,除非名称遇到特殊符号如空格、中横线等 + +```html + + + + + JavaScript 基础 - 对象方法 + + + + + + +``` + +声明对象,并添加了若干方法后,可以使用 `.` 或 `[]` 调用对象中函数,我称之为方法调用。 + +```html + + + + + JavaScript 基础 - 对象方法 + + + + + + +``` + +扩展:也可以动态为对象添加方法,动态添加与直接定义是一样的,只是语法上更灵活。 + +```html + + + + + JavaScript 基础 - 对象方法 + + + + + + +``` + +**注:无论是属性或是方法,同一个对象中出现名称一样的,后面的会覆盖前面的。** + +### null + +null 也是 JavaScript 中数据类型的一种,通常只用它来表示不存在的对象。使用 typeof 检测类型它的类型时,结果为 `object`。 + +#### 遍历对象 + +~~~javascript +let obj = { + uname: 'pink' +} +for(let k in obj) { + // k 属性名 字符串 带引号 obj.'uname' k === 'uname' + // obj[k] 属性值 obj['uname'] obj[k] +} +~~~ + +for in 不提倡遍历数组 因为 k 是 字符串 + +## 内置对象 + +回想一下我们曾经使用过的 `console.log`,`console`其实就是 JavaScript 中内置的对象,该对象中存在一个方法叫 `log`,然后调用 `log` 这个方法,即 `console.log()`。 + +除了 `console` 对象外,JavaScritp 还有其它的内置的对象 + +### Math + +`Math` 是 JavaScript 中内置的对象,称为数学对象,这个对象下即包含了属性,也包含了许多的方法。 + +#### 属性 + +- Math.PI,获取圆周率 + +```javascript +// 圆周率 +console.log(Math.PI); +``` + +#### 方法 + +- Math.random,生成 0 到 1 间的随机数 + +```javascript +// 0 ~ 1 之间的随机数, 包含 0 不包含 1 +Math.random() +``` + +- Math.ceil,数字向上取整 + +```javascript +// 舍弃小数部分,整数部分加1 +Math.ceil(3.4) +``` + +- Math.floor,数字向下取整 + +```javascript +// 舍弃小数部分,整数部分不变 +Math.floor(4.68) +``` + +- Math.round,四舍五入取整 + +```javascript +// 取整,四舍五入原则 +Math.round(5.46539) +Math.round(4.849) +``` + +- Math.max,在一组数中找出最大的 + +```javascript +// 找出最大值 +Math.max(10, 21, 7, 24, 13) +``` + +- Math.min,在一组数中找出最小的 + +```javascript +// 找出最小值 +Math.min(24, 18, 6, 19, 21) +``` + +- Math.pow,幂方法 + +```javascript +// 求某个数的多少次方 +Math.pow(4, 2) // 求 4 的 2 次方 +Math.pow(2, 3) // 求 2 的 3 次方 +``` + +- Math.sqrt,平方根 + +```javascript +// 求某数的平方根 +Math.sqrt(16) +``` + +数学对象提供了比较多的方法,这里不要求强记,通过演示数学对象的使用,加深对对象的理解。 + diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/03-\347\254\224\350\256\260/assets/function.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/03-\347\254\224\350\256\260/assets/function.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..ecbf13b75138ae7000c2954853eaee78710c2a71 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/03-\347\254\224\350\256\260/assets/function.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1648177414995.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1648177414995.png" new file mode 100644 index 0000000000000000000000000000000000000000..f440fae2b360a7319971bdf4b56ea96cedcbf327 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1648177414995.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1648177523936.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1648177523936.png" new file mode 100644 index 0000000000000000000000000000000000000000..f4b28ebf0b28ff4a52c8778fa8163d874f3f1f6e Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1648177523936.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1673327031587.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1673327031587.png" new file mode 100644 index 0000000000000000000000000000000000000000..a32880d3e0c574a9e9a8c151d62e23bda974c241 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1673327031587.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1673327193659.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1673327193659.png" new file mode 100644 index 0000000000000000000000000000000000000000..8c7ce26c215ab1f7c9c5ee5c4fceca27faf6c43a Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1673327193659.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1673327371980.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1673327371980.png" new file mode 100644 index 0000000000000000000000000000000000000000..e39804fe717e426a5f86a986bc1661aa50a8a289 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1673327371980.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\344\275\234\344\270\232.md" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\344\275\234\344\270\232.md" new file mode 100644 index 0000000000000000000000000000000000000000..06b58a9e3e7d776414966eb168159d4022f35a27 --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\344\275\234\344\270\232.md" @@ -0,0 +1,130 @@ +主观题 + +### 练习题1: + +点名: 每次刷新网页运行, 在控制台 随机输出一位同学的名字 ["老赵", "老李", "小传", "小黑"],如果输出了,则数组中删除这个名字 + +### 练习题2: + +声明对象 + +目的: 复习对象的声明 + +要求: + +1. 声明一个变量per, 类型为对象类型 +2. 该对象的属性为性别,年龄,爱好(3个) +3. 该对象的方法有 说话, 吃饭(2个) +4. 在控制台分别调用该对象的属性和方法 + +### 练习题3: + +调用对象的方法 + +目的: 复习对象的使用 + +要求: + +1. 对象声明完毕后, 调用对象中的吃饭的方法 +2. 提示: 对象中的方法本质是函数, 调用需要加() +3. 方法也可以传递参数的 + + + +### 练习题4: + +猜数字游戏,设定次数,最多猜8次 + + + +。 + +### 拓展作业1 + +**需求:** 利用对象数组渲染英雄列表案例 + +**展示效果:**如下: + +![67332737198](assets/1673327371980.png) + +功能1: + +1. 利用对象数组里面的数据来渲染页面,渲染多个数据 +2. 鼠标经过停留会显示`英雄名字` + +数据: + +~~~javascript +let datas = [ + { name: '司马懿', imgSrc: '01.jpg' }, + { name: '女娲', imgSrc: '02.jpg' }, + { name: '百里守约', imgSrc: '03.jpg' }, + { name: '亚瑟', imgSrc: '04.jpg' }, + { name: '虞姬', imgSrc: '05.jpg' }, + { name: '张良', imgSrc: '06.jpg' }, + { name: '安其拉', imgSrc: '07.jpg' }, + { name: '李白', imgSrc: '08.jpg' }, + { name: '阿珂', imgSrc: '09.jpg' }, + { name: '墨子', imgSrc: '10.jpg' }, + { name: '鲁班', imgSrc: '11.jpg' }, + { name: '嬴政', imgSrc: '12.jpg' }, + { name: '孙膑', imgSrc: '13.jpg' }, + { name: '周瑜', imgSrc: '14.jpg' }, + { name: 'XXX', imgSrc: '15.jpg' }, + { name: 'XXX', imgSrc: '16.jpg' }, + { name: 'XXX', imgSrc: '17.jpg' }, + { name: 'XXX', imgSrc: '18.jpg' }, + { name: 'XXX', imgSrc: '19.jpg' }, + { name: 'XXX', imgSrc: '20.jpg' } +] +~~~ + + + +### 拓展作业2 + +需求: 根据数据完成表格渲染 + +效果如下: + +![67332719365](assets/1673327193659.png) + +功能需求: + +1. 表格行要求 编号、科目、成绩、和 删除链接 +2. 最后计算出总分 和 平均分 + +数据如下: + +~~~javascript +let data = [ + { subject: '语文', score: 46 }, + { subject: '数学', score: 80 }, + { subject: '英语', score: 100 }, +] +~~~ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\346\241\210\344\276\213\351\235\231\346\200\201\346\250\241\346\235\277.html" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\346\241\210\344\276\213\351\235\231\346\200\201\346\250\241\346\235\277.html" new file mode 100644 index 0000000000000000000000000000000000000000..bca31c50735bc50f3d4470994985cd282bd1390c --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\346\241\210\344\276\213\351\235\231\346\200\201\346\250\241\346\235\277.html" @@ -0,0 +1,76 @@ + + + + + + + + + Document + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
编号科目成绩操作
1语文46删除
2英语80删除
3数学100删除
+ 暂无数据 +
+ 总分:246 + 平均分:79 +
+
+ +
+ + + + + + \ No newline at end of file diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/styles/index.css" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/styles/index.css" new file mode 100644 index 0000000000000000000000000000000000000000..22a865da5d9502d6e6e18d1adeb9e234f895fb72 --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/styles/index.css" @@ -0,0 +1,83 @@ +.score-case { + width: 1000px; + margin: 50px auto; + display: flex; +} +.score-case .table { + flex: 4; +} +.score-case .table table { + width: 100%; + border-spacing: 0; + border-top: 1px solid #ccc; + border-left: 1px solid #ccc; +} +.score-case .table table th { + background: #f5f5f5; +} +.score-case .table table tr:hover td { + background: #f5f5f5; +} +.score-case .table table td, +.score-case .table table th { + border-bottom: 1px solid #ccc; + border-right: 1px solid #ccc; + text-align: center; + padding: 10px; +} +.score-case .table table td.red, +.score-case .table table th.red { + color: red; +} +.score-case .table .none { + height: 100px; + line-height: 100px; + color: #999; +} +.score-case .form { + flex: 1; + padding: 20px; +} +.score-case .form .form-item { + display: flex; + margin-bottom: 20px; + align-items: center; +} +.score-case .form .form-item .label { + width: 60px; + text-align: right; + font-size: 14px; +} +.score-case .form .form-item .input { + flex: 1; +} +.score-case .form .form-item input, +.score-case .form .form-item select { + appearance: none; + outline: none; + border: 1px solid #ccc; + width: 200px; + height: 40px; + box-sizing: border-box; + padding: 10px; + color: #666; +} +.score-case .form .form-item input::placeholder { + color: #666; +} +.score-case .form .form-item .cancel, +.score-case .form .form-item .submit { + appearance: none; + outline: none; + border: 1px solid #ccc; + border-radius: 4px; + padding: 4px 10px; + margin-right: 10px; + font-size: 12px; + background: #ccc; +} +.score-case .form .form-item .submit { + border-color: #069; + background: #069; + color: #fff; +} diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/styles/index.less" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/styles/index.less" new file mode 100644 index 0000000000000000000000000000000000000000..d2c14b109076b3606e6cff98983d9154edb209bb --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/styles/index.less" @@ -0,0 +1,82 @@ +.score-case { + width: 1000px; + margin: 50px auto; + display: flex; + .table { + flex: 4; + table { + width: 100%; + border-spacing: 0; + border-top: 1px solid #ccc; + border-left: 1px solid #ccc; + th { + background: #f5f5f5; + } + tr:hover td { + background: #f5f5f5; + } + td, + th { + border-bottom: 1px solid #ccc; + border-right: 1px solid #ccc; + text-align: center; + padding: 10px; + &.red { + color: red; + } + } + } + .none { + height: 100px; + line-height: 100px; + color: #999; + } + } + .form { + flex: 1; + padding: 20px; + .form-item { + display: flex; + margin-bottom: 20px; + align-items: center; + } + .form-item .label { + width: 60px; + text-align: right; + font-size: 14px; + } + .form-item .input { + flex: 1; + } + .form-item input, + .form-item select { + appearance: none; + outline: none; + border: 1px solid #ccc; + width: 200px; + height: 40px; + box-sizing: border-box; + padding: 10px; + color: #666; + } + .form-item input::placeholder { + color: #666; + } + .form-item .cancel, + .form-item .submit { + appearance: none; + outline: none; + border: 1px solid #ccc; + border-radius: 4px; + padding: 4px 10px; + margin-right: 10px; + font-size: 12px; + background: #ccc; + } + .form-item .submit { + border-color: #069; + background: #069; + color: #fff; + } + } +} \ No newline at end of file diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/\346\210\220\347\273\251\346\241\210\344\276\213\351\235\231\346\200\201\346\250\241\346\235\277.html" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/\346\210\220\347\273\251\346\241\210\344\276\213\351\235\231\346\200\201\346\250\241\346\235\277.html" new file mode 100644 index 0000000000000000000000000000000000000000..bca31c50735bc50f3d4470994985cd282bd1390c --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/\346\210\220\347\273\251\346\241\210\344\276\213\351\235\231\346\200\201\346\250\241\346\235\277.html" @@ -0,0 +1,76 @@ + + + + + + + + + Document + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
编号科目成绩操作
1语文46删除
2英语80删除
3数学100删除
+ 暂无数据 +
+ 总分:246 + 平均分:79 +
+
+ +
+ + + + + + \ No newline at end of file diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/css/hero.css" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/css/hero.css" new file mode 100644 index 0000000000000000000000000000000000000000..599aec96c1705b88d7f688aee321b2ba4fbb570f --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/css/hero.css" @@ -0,0 +1,56 @@ +* { + margin: 0; + padding: 0; +} + +ul { + list-style: none; +} + +a { + width: 150px; + height: 30px; + text-decoration: none; + display: block; + margin: 10px auto; + background: goldenrod; + color: #fff; + border-radius: 15px; + line-height: 30px; +} + +a:hover { + background: gold; + color: #666; +} + +body { + background: #000; + text-align: center; +} + +.list { + display: flex; + flex-wrap: wrap; + width: 500px; + margin: 20px auto; +} + +.list li { + position: relative; + transition: all 1s; + margin-top: 15px; +} + +.list li:first-child { + margin-left: 0; +} + +.list li:hover { + transform: scale(1.3); + z-index: 999; +} + +.list li img { + width: 100px; +} \ No newline at end of file diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/hero(\345\255\246\347\224\237\347\273\203\344\271\240).html" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/hero(\345\255\246\347\224\237\347\273\203\344\271\240).html" new file mode 100644 index 0000000000000000000000000000000000000000..6871dbb172d1cb174b04cc0c58bbca80d7968500 --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/hero(\345\255\246\347\224\237\347\273\203\344\271\240).html" @@ -0,0 +1,58 @@ + + + + + + + + 渲染英雄列表案例 + + + + + + + + + + \ No newline at end of file diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/01.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/01.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..013418af4a5b633283c7929ec4dcdcbce67d7d53 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/01.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/02.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/02.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..c3db7071cba5ed750a9f1e047542be64bbfb99e4 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/02.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/03.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/03.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..8dd48e0cd143874c199a66628dba432a87b5acde Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/03.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/04.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/04.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..703b45cfe572186ed3d20ca8acde28412280a52c Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/04.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/05.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/05.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..098236b698e56603a69399758e6ac6dbb9b804b4 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/05.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/06.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/06.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..5f650946c2ad6a398b29d5eda4d402bbc11fa0e5 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/06.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/07.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/07.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..84bacfebd91e6ff061c01f3b08a3532738226c62 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/07.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/08.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/08.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..fb3cbdadf4cd83ad98e46152fb5a2b3ee0b33b4e Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/08.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/09.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/09.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..f9885ce68ee5b297501e82b6c5ee9bce90d0a6b3 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/09.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/10.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/10.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..aa8ed9047634475be555be81574ff995dd11bc6e Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/10.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/11.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/11.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..bb6609f15d2c21b3ad03ebbabd6ff03fd0f6fc35 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/11.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/12.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/12.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..f17a900ee88c7ae285fbcb2f207f7874ced45e5a Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/12.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/13.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/13.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..20bcfbc1539057012fc54df916252860337b2c7c Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/13.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/14.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/14.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..11bd106f2b9989dad9f96bcca38eef47c746b071 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/14.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/15.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/15.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..b17917bc831faa1a82a46dbc459c3054e54163a0 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/15.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/16.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/16.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..f733ad264f3dd9d7332df475eb77da44c491679c Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/16.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/17.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/17.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..1ccad0e6c770104a46216138237ce985560b3644 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/17.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/18.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/18.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..2c35dcc05ae8a1729b94cc3e5df938f8f9cfca5a Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/18.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/19.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/19.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..df2b53e562a41b116ceea014318984b52abedfa5 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/19.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/20.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/20.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..872c8277e36a7aab626dffa48f022a79d0f989eb Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/20.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/21.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/21.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..a5300d6c2ab6dcf93e6404a6644f7b51c26b5933 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/21.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/22.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/22.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..2374e726b5bae7dad6c3b13844534f5bdfe99920 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/22.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/assets/1648177414995.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/assets/1648177414995.png" new file mode 100644 index 0000000000000000000000000000000000000000..f440fae2b360a7319971bdf4b56ea96cedcbf327 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/assets/1648177414995.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/assets/1648177523936.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/assets/1648177523936.png" new file mode 100644 index 0000000000000000000000000000000000000000..f4b28ebf0b28ff4a52c8778fa8163d874f3f1f6e Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/assets/1648177523936.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/assets/1673326788639.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/assets/1673326788639.png" new file mode 100644 index 0000000000000000000000000000000000000000..fed0bbd4e4b5c074653351fcd1fe6040c0599984 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/assets/1673326788639.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/assets/1673327031587.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/assets/1673327031587.png" new file mode 100644 index 0000000000000000000000000000000000000000..a32880d3e0c574a9e9a8c151d62e23bda974c241 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/assets/1673327031587.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/assets/1673327193659.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/assets/1673327193659.png" new file mode 100644 index 0000000000000000000000000000000000000000..8c7ce26c215ab1f7c9c5ee5c4fceca27faf6c43a Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/assets/1673327193659.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/assets/1673327371980.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/assets/1673327371980.png" new file mode 100644 index 0000000000000000000000000000000000000000..e39804fe717e426a5f86a986bc1661aa50a8a289 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/assets/1673327371980.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/assets/1673328023493.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/assets/1673328023493.png" new file mode 100644 index 0000000000000000000000000000000000000000..75418d5eb0a3c9d7fa9d4b325f02a3f5822f8d13 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/assets/1673328023493.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\344\275\234\344\270\232.md" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\344\275\234\344\270\232.md" new file mode 100644 index 0000000000000000000000000000000000000000..eb9f5318a02e32337ad8fb3d7533cdaad00bf18c --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\344\275\234\344\270\232.md" @@ -0,0 +1,427 @@ +## 客观题 + +PC端地址:https://ks.wjx.top/vm/hgfFlVd.aspx# + +二维码扫码: + + ![67332678863](assets/1673326788639.png) + +## 主观题 + +### 练习题1: + +点名: 每次刷新网页运行, 在控制台 随机输出一位同学的名字 ["老赵", "老李", "小传", "小黑"],如果输出了,则数组中删除这个名字 + +~~~html +这个课堂讲过,pink老师坚决不写答案 +~~~ + +### 练习题2: + +声明对象 + +目的: 复习对象的声明 + +要求: + +1. 声明一个变量per, 类型为对象类型 +2. 该对象的属性为性别,年龄,爱好(3个) +3. 该对象的方法有 说话, 吃饭(2个) +4. 在控制台分别调用该对象的属性和方法 + +~~~javascript +let per = { + sex: 'man', // 年龄, + age: 18, // 性别, + hobby: 'studyAndGame', // 爱好 + speak: function () { + // 说话, + document.write(`speak方法被调用了---
`) + }, + eat: function () { + // 吃饭 + document.write(`eat方法被调用了---`) + } +} +// 下面是调用部分 +document.write(`姓名:${per.sex}
`) +document.write(`姓名:${per.age}
`) +document.write(`姓名:${per.hobby}
`) +// 调用方法 +per.speak() +per.eat() + +~~~ + +### 练习题3: + +调用对象的方法 + +目的: 复习对象的使用 + +要求: + +1. 对象声明完毕后, 调用对象中的吃饭的方法 +2. 提示: 对象中的方法本质是函数, 调用需要加() +3. 方法也可以传递参数的 + +~~~javascript +let per = { + sex: 'man', // 年龄, + age: 18, // 性别, + hobby: 'studyAndGame', // 爱好 + speak: function () { + // 说话, + document.write(`speak方法被调用了---
`) + }, + eat: function (f) { + // 吃饭 + document.write(`我今天吃的是${f}`) + } +} +// 下面是调用部分 +document.write(`姓名:${per.sex}
`) +document.write(`姓名:${per.age}
`) +document.write(`姓名:${per.hobby}
`) + +// 调用方法 +per.speak() +per.eat('苹果') +~~~ + +### 练习题4: + +猜数字游戏,设定次数,最多猜8次 + +~~~javascript + function random(min, max) { + + return Math.floor(Math.random() * (max - min + 1)) + min +} + // 生成一个数字先,猜0-20之间的数 + let num = random(0, 20) + + let flag = true + // 最多猜8次 + for (let i = 1; i <= 8; i++) { + + let userNum = prompt('请输入您要猜的数字') + + // 比较数字 + if (userNum > num) { + + alert('您猜的数字大了') + } else if (userNum < num) { + + alert('您猜的数字小了') + } else { + flag = false + alert('恭喜猜对了!') + break + } + } + + if (flag) { + alert('太笨了,这都猜不到!O(∩_∩)O') + } + +~~~ + +### 练习题5: + +完成课堂随机生成颜色的案例。 + +~~~html +课堂案例,同学你能写出来吗? +~~~ + +### 拓展作业1 + +**需求:** 利用对象数组渲染英雄列表案例 + +**展示效果:**如下: + +![67332737198](assets/1673327371980.png) + +功能1: + +1. 利用对象数组里面的数据来渲染页面,渲染多个数据 +2. 鼠标经过停留会显示`英雄名字` + +数据: + +~~~javascript +let datas = [ + { name: '司马懿', imgSrc: '01.jpg' }, + { name: '女娲', imgSrc: '02.jpg' }, + { name: '百里守约', imgSrc: '03.jpg' }, + { name: '亚瑟', imgSrc: '04.jpg' }, + { name: '虞姬', imgSrc: '05.jpg' }, + { name: '张良', imgSrc: '06.jpg' }, + { name: '安其拉', imgSrc: '07.jpg' }, + { name: '李白', imgSrc: '08.jpg' }, + { name: '阿珂', imgSrc: '09.jpg' }, + { name: '墨子', imgSrc: '10.jpg' }, + { name: '鲁班', imgSrc: '11.jpg' }, + { name: '嬴政', imgSrc: '12.jpg' }, + { name: '孙膑', imgSrc: '13.jpg' }, + { name: '周瑜', imgSrc: '14.jpg' }, + { name: 'XXX', imgSrc: '15.jpg' }, + { name: 'XXX', imgSrc: '16.jpg' }, + { name: 'XXX', imgSrc: '17.jpg' }, + { name: 'XXX', imgSrc: '18.jpg' }, + { name: 'XXX', imgSrc: '19.jpg' }, + { name: 'XXX', imgSrc: '20.jpg' } +] +~~~ + +答案: + +~~~html + + + + + + + + 渲染英雄列表案例 + + + + + + + + + + +~~~ + + + +### 拓展作业2 + +需求: 根据数据完成表格渲染 + +效果如下: + +![67332719365](assets/1673327193659.png) + +功能需求: + +1. 表格行要求 编号、科目、成绩、和 删除链接 +2. 最后计算出总分 和 平均分 + +数据如下: + +~~~javascript +let data = [ + { subject: '语文', score: 46 }, + { subject: '数学', score: 80 }, + { subject: '英语', score: 100 }, +] +~~~ + +答案: + +~~~html + + + + + + + + + Document + + + + + + + +~~~ + +## 排错题 + +### 排错题1 + +~~~html + + + + + +~~~ + +### 排错题2 + +~~~html + + + + + +~~~ + +## 关注pink老师 + +经过基础5天学习,是不是很有收获呀,同时pink老师准备了很多资料给同学,看在辛苦的份上,没有一键三连的同学赶紧三连,同时记得关注我的抖音,里面经常发布各种资料哦~~~ + + ![67332802349](assets/1673328023493.png) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/styles/index.css" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/styles/index.css" new file mode 100644 index 0000000000000000000000000000000000000000..22a865da5d9502d6e6e18d1adeb9e234f895fb72 --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/styles/index.css" @@ -0,0 +1,83 @@ +.score-case { + width: 1000px; + margin: 50px auto; + display: flex; +} +.score-case .table { + flex: 4; +} +.score-case .table table { + width: 100%; + border-spacing: 0; + border-top: 1px solid #ccc; + border-left: 1px solid #ccc; +} +.score-case .table table th { + background: #f5f5f5; +} +.score-case .table table tr:hover td { + background: #f5f5f5; +} +.score-case .table table td, +.score-case .table table th { + border-bottom: 1px solid #ccc; + border-right: 1px solid #ccc; + text-align: center; + padding: 10px; +} +.score-case .table table td.red, +.score-case .table table th.red { + color: red; +} +.score-case .table .none { + height: 100px; + line-height: 100px; + color: #999; +} +.score-case .form { + flex: 1; + padding: 20px; +} +.score-case .form .form-item { + display: flex; + margin-bottom: 20px; + align-items: center; +} +.score-case .form .form-item .label { + width: 60px; + text-align: right; + font-size: 14px; +} +.score-case .form .form-item .input { + flex: 1; +} +.score-case .form .form-item input, +.score-case .form .form-item select { + appearance: none; + outline: none; + border: 1px solid #ccc; + width: 200px; + height: 40px; + box-sizing: border-box; + padding: 10px; + color: #666; +} +.score-case .form .form-item input::placeholder { + color: #666; +} +.score-case .form .form-item .cancel, +.score-case .form .form-item .submit { + appearance: none; + outline: none; + border: 1px solid #ccc; + border-radius: 4px; + padding: 4px 10px; + margin-right: 10px; + font-size: 12px; + background: #ccc; +} +.score-case .form .form-item .submit { + border-color: #069; + background: #069; + color: #fff; +} diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/styles/index.less" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/styles/index.less" new file mode 100644 index 0000000000000000000000000000000000000000..d2c14b109076b3606e6cff98983d9154edb209bb --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/styles/index.less" @@ -0,0 +1,82 @@ +.score-case { + width: 1000px; + margin: 50px auto; + display: flex; + .table { + flex: 4; + table { + width: 100%; + border-spacing: 0; + border-top: 1px solid #ccc; + border-left: 1px solid #ccc; + th { + background: #f5f5f5; + } + tr:hover td { + background: #f5f5f5; + } + td, + th { + border-bottom: 1px solid #ccc; + border-right: 1px solid #ccc; + text-align: center; + padding: 10px; + &.red { + color: red; + } + } + } + .none { + height: 100px; + line-height: 100px; + color: #999; + } + } + .form { + flex: 1; + padding: 20px; + .form-item { + display: flex; + margin-bottom: 20px; + align-items: center; + } + .form-item .label { + width: 60px; + text-align: right; + font-size: 14px; + } + .form-item .input { + flex: 1; + } + .form-item input, + .form-item select { + appearance: none; + outline: none; + border: 1px solid #ccc; + width: 200px; + height: 40px; + box-sizing: border-box; + padding: 10px; + color: #666; + } + .form-item input::placeholder { + color: #666; + } + .form-item .cancel, + .form-item .submit { + appearance: none; + outline: none; + border: 1px solid #ccc; + border-radius: 4px; + padding: 4px 10px; + margin-right: 10px; + font-size: 12px; + background: #ccc; + } + .form-item .submit { + border-color: #069; + background: #069; + color: #fff; + } + } +} \ No newline at end of file diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/\346\210\220\347\273\251\346\241\210\344\276\213\351\235\231\346\200\201\346\250\241\346\235\277.html" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/\346\210\220\347\273\251\346\241\210\344\276\213\351\235\231\346\200\201\346\250\241\346\235\277.html" new file mode 100644 index 0000000000000000000000000000000000000000..91ca1ae5125784396202aeaac70dd4b0d9448ce7 --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/\346\210\220\347\273\251\346\241\210\344\276\213\351\235\231\346\200\201\346\250\241\346\235\277.html" @@ -0,0 +1,108 @@ + + + + + + + + + Document + + + + + + + + + + \ No newline at end of file diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/css/hero.css" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/css/hero.css" new file mode 100644 index 0000000000000000000000000000000000000000..599aec96c1705b88d7f688aee321b2ba4fbb570f --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/css/hero.css" @@ -0,0 +1,56 @@ +* { + margin: 0; + padding: 0; +} + +ul { + list-style: none; +} + +a { + width: 150px; + height: 30px; + text-decoration: none; + display: block; + margin: 10px auto; + background: goldenrod; + color: #fff; + border-radius: 15px; + line-height: 30px; +} + +a:hover { + background: gold; + color: #666; +} + +body { + background: #000; + text-align: center; +} + +.list { + display: flex; + flex-wrap: wrap; + width: 500px; + margin: 20px auto; +} + +.list li { + position: relative; + transition: all 1s; + margin-top: 15px; +} + +.list li:first-child { + margin-left: 0; +} + +.list li:hover { + transform: scale(1.3); + z-index: 999; +} + +.list li img { + width: 100px; +} \ No newline at end of file diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/hero(\345\255\246\347\224\237\347\273\203\344\271\240).html" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/hero(\345\255\246\347\224\237\347\273\203\344\271\240).html" new file mode 100644 index 0000000000000000000000000000000000000000..76535a162260fbc180f7e7e91d55d6c96156e792 --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/hero(\345\255\246\347\224\237\347\273\203\344\271\240).html" @@ -0,0 +1,55 @@ + + + + + + + + 渲染英雄列表案例 + + + + + + + + + + \ No newline at end of file diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/01.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/01.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..013418af4a5b633283c7929ec4dcdcbce67d7d53 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/01.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/02.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/02.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..c3db7071cba5ed750a9f1e047542be64bbfb99e4 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/02.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/03.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/03.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..8dd48e0cd143874c199a66628dba432a87b5acde Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/03.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/04.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/04.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..703b45cfe572186ed3d20ca8acde28412280a52c Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/04.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/05.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/05.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..098236b698e56603a69399758e6ac6dbb9b804b4 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/05.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/06.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/06.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..5f650946c2ad6a398b29d5eda4d402bbc11fa0e5 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/06.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/07.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/07.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..84bacfebd91e6ff061c01f3b08a3532738226c62 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/07.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/08.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/08.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..fb3cbdadf4cd83ad98e46152fb5a2b3ee0b33b4e Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/08.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/09.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/09.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..f9885ce68ee5b297501e82b6c5ee9bce90d0a6b3 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/09.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/10.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/10.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..aa8ed9047634475be555be81574ff995dd11bc6e Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/10.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/11.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/11.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..bb6609f15d2c21b3ad03ebbabd6ff03fd0f6fc35 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/11.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/12.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/12.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..f17a900ee88c7ae285fbcb2f207f7874ced45e5a Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/12.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/13.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/13.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..20bcfbc1539057012fc54df916252860337b2c7c Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/13.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/14.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/14.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..11bd106f2b9989dad9f96bcca38eef47c746b071 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/14.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/15.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/15.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..b17917bc831faa1a82a46dbc459c3054e54163a0 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/15.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/16.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/16.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..f733ad264f3dd9d7332df475eb77da44c491679c Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/16.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/17.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/17.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..1ccad0e6c770104a46216138237ce985560b3644 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/17.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/18.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/18.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..2c35dcc05ae8a1729b94cc3e5df938f8f9cfca5a Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/18.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/19.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/19.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..df2b53e562a41b116ceea014318984b52abedfa5 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/19.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/20.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/20.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..872c8277e36a7aab626dffa48f022a79d0f989eb Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/20.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/21.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/21.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..a5300d6c2ab6dcf93e6404a6644f7b51c26b5933 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/21.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/22.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/22.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..2374e726b5bae7dad6c3b13844534f5bdfe99920 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/05-\344\275\234\344\270\232/\347\255\224\346\241\210/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/22.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250\347\264\240\346\235\220.html" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250\347\264\240\346\235\220.html" new file mode 100644 index 0000000000000000000000000000000000000000..3ef8564e9c4c618eca8658c11656c358da93fbbf --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\345\255\246\347\224\237\344\277\241\346\201\257\350\241\250\347\264\240\346\235\220.html" @@ -0,0 +1,101 @@ + + + + + + + Document + + + + +

学生信息

+

将数据渲染到页面中...

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
学生列表
序号姓名年龄性别家乡
1小明18河北省
1小明18河北省
1小明18河北省
1小明18河北省
1小明18河北省
1小明18河北省
+ + + + \ No newline at end of file diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/css/style.css" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/css/style.css" new file mode 100644 index 0000000000000000000000000000000000000000..e97f46379400030e83b1e810beb96574dce25c4b --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/css/style.css" @@ -0,0 +1,87 @@ +* { + margin: 0; + padding: 0; +} +.w { + width: 1200px; + margin: auto; +} +body { + background-color: #f3f5f7; +} +li { + list-style: none; +} +a { + text-decoration: none; +} +.clearfix:before,.clearfix:after { + content:""; + display:table; + } + .clearfix:after { + clear:both; + } + .clearfix { + *zoom:1; + } + + +.box { + margin-top: 30px; +} +.box-hd { + height: 45px; +} +.box-hd h3 { + float: left; + font-size: 20px; + color: #494949; +} +.box-hd a { + float: right; + font-size: 12px; + color: #a5a5a5; + margin-top: 10px; + margin-right: 30px; +} +/* 把li 的父亲ul 修改的足够宽一行能装开5个盒子就不会换行了 */ +.box-bd ul { + width: 1225px; +} +.box-bd ul li { + position: relative; + top: 0; + float: left; + width: 228px; + height: 270px; + background-color: #fff; + margin-right: 15px; + margin-bottom: 15px; + transition: all .3s; + +} +.box-bd ul li a { + display: block; +} +.box-bd ul li:hover { + top: -8px; + box-shadow: 0 15px 30px rgb(0 0 0 / 10%); +} +.box-bd ul li img { + width: 100%; +} +.box-bd ul li h4 { + margin: 20px 20px 20px 25px; + font-size: 14px; + color: #050505; + font-weight: 400; +} +.box-bd .info { + margin: 0 20px 0 25px; + font-size: 12px; + color: #999; +} +.box-bd .info span { + color: #ff7c2d; +} diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course01.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course01.png" new file mode 100644 index 0000000000000000000000000000000000000000..80d0e748b19d6f8e34ae1845494238501acf0b5b Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course01.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course02.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course02.png" new file mode 100644 index 0000000000000000000000000000000000000000..3b6a1e1238d8a78d446c752b37896e7c05163b45 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course02.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course03.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course03.png" new file mode 100644 index 0000000000000000000000000000000000000000..861ceb4711f5973a5bb5ba1b10cbc216a892b6aa Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course03.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course04.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course04.png" new file mode 100644 index 0000000000000000000000000000000000000000..9c38be2a0611b4f41074fdead14253f40ebd529c Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course04.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course05.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course05.png" new file mode 100644 index 0000000000000000000000000000000000000000..3a6cf3ecb2c22afe6aed0fa1daf29356d22db905 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course05.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course06.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course06.png" new file mode 100644 index 0000000000000000000000000000000000000000..f72ba83b1263906899b94f204d5e2d43ab5909e4 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course06.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course07.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course07.png" new file mode 100644 index 0000000000000000000000000000000000000000..5ccd0b41529e290504556f9c096d512f3de846a8 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course07.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course08.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course08.png" new file mode 100644 index 0000000000000000000000000000000000000000..5f4d626f4025e6c0976cc325b91b0567af4c750c Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/images/course08.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/index.html" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/index.html" new file mode 100644 index 0000000000000000000000000000000000000000..3c6342123e28f586b5e441ecfaaac3650c3216ff --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/index.html" @@ -0,0 +1,52 @@ + + + + + + + + 学车在线首页 + + + + + + + + +
+
+

精品推荐

+ 查看全部 +
+
+ +
+
+ + + + \ No newline at end of file diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/t.js" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/t.js" new file mode 100644 index 0000000000000000000000000000000000000000..5e3b6926a19288fc66f9ad04dba662b62c52cce9 --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/05 js\344\270\255\347\232\204\345\257\271\350\261\241/06-\347\264\240\346\235\220/\347\273\274\345\220\210\344\275\234\344\270\232\347\264\240\346\235\220/t.js" @@ -0,0 +1,42 @@ +let data = [ + { + src: 'images/course01.png', + title: 'Think PHP 5.0 博客系统实战项目演练', + num: 1125 + }, + { + src: 'images/course02.png', + title: 'Android 网络动态图片加载实战', + num: 357 + }, + { + src: 'images/course03.png', + title: 'Angular2 大前端商城实战项目演练', + num: 22250 + }, + { + src: 'images/course04.png', + title: 'Android APP 实战项目演练', + num: 389 + }, + { + src: 'images/course05.png', + title: 'UGUI 源码深度分析案例', + num: 124 + }, + { + src: 'images/course06.png', + title: 'Kami2首页界面切换效果实战演练', + num: 432 + }, + { + src: 'images/course07.png', + title: 'UNITY 从入门到精通实战案例', + num: 888 + }, + { + src: 'images/course08.png', + title: 'Cocos 深度学习你不会错过的实战', + num: 590 + } +] \ No newline at end of file diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1648177414995.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1648177414995.png" new file mode 100644 index 0000000000000000000000000000000000000000..f440fae2b360a7319971bdf4b56ea96cedcbf327 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1648177414995.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1648177523936.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1648177523936.png" new file mode 100644 index 0000000000000000000000000000000000000000..f4b28ebf0b28ff4a52c8778fa8163d874f3f1f6e Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1648177523936.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1673327031587.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1673327031587.png" new file mode 100644 index 0000000000000000000000000000000000000000..a32880d3e0c574a9e9a8c151d62e23bda974c241 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1673327031587.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1673327193659.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1673327193659.png" new file mode 100644 index 0000000000000000000000000000000000000000..8c7ce26c215ab1f7c9c5ee5c4fceca27faf6c43a Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1673327193659.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1673327371980.png" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1673327371980.png" new file mode 100644 index 0000000000000000000000000000000000000000..e39804fe717e426a5f86a986bc1661aa50a8a289 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/assets/1673327371980.png" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/show.html" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/show.html" new file mode 100644 index 0000000000000000000000000000000000000000..a21e8e32a67d4d5031c7e8026a0f6b16e22a1760 --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/show.html" @@ -0,0 +1,62 @@ + + + + + + + 作业 + + + + + + + + + + + + + + + + \ No newline at end of file diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\344\275\234\344\270\232.md" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\344\275\234\344\270\232.md" new file mode 100644 index 0000000000000000000000000000000000000000..06b58a9e3e7d776414966eb168159d4022f35a27 --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\344\275\234\344\270\232.md" @@ -0,0 +1,130 @@ +主观题 + +### 练习题1: + +点名: 每次刷新网页运行, 在控制台 随机输出一位同学的名字 ["老赵", "老李", "小传", "小黑"],如果输出了,则数组中删除这个名字 + +### 练习题2: + +声明对象 + +目的: 复习对象的声明 + +要求: + +1. 声明一个变量per, 类型为对象类型 +2. 该对象的属性为性别,年龄,爱好(3个) +3. 该对象的方法有 说话, 吃饭(2个) +4. 在控制台分别调用该对象的属性和方法 + +### 练习题3: + +调用对象的方法 + +目的: 复习对象的使用 + +要求: + +1. 对象声明完毕后, 调用对象中的吃饭的方法 +2. 提示: 对象中的方法本质是函数, 调用需要加() +3. 方法也可以传递参数的 + + + +### 练习题4: + +猜数字游戏,设定次数,最多猜8次 + + + +。 + +### 拓展作业1 + +**需求:** 利用对象数组渲染英雄列表案例 + +**展示效果:**如下: + +![67332737198](assets/1673327371980.png) + +功能1: + +1. 利用对象数组里面的数据来渲染页面,渲染多个数据 +2. 鼠标经过停留会显示`英雄名字` + +数据: + +~~~javascript +let datas = [ + { name: '司马懿', imgSrc: '01.jpg' }, + { name: '女娲', imgSrc: '02.jpg' }, + { name: '百里守约', imgSrc: '03.jpg' }, + { name: '亚瑟', imgSrc: '04.jpg' }, + { name: '虞姬', imgSrc: '05.jpg' }, + { name: '张良', imgSrc: '06.jpg' }, + { name: '安其拉', imgSrc: '07.jpg' }, + { name: '李白', imgSrc: '08.jpg' }, + { name: '阿珂', imgSrc: '09.jpg' }, + { name: '墨子', imgSrc: '10.jpg' }, + { name: '鲁班', imgSrc: '11.jpg' }, + { name: '嬴政', imgSrc: '12.jpg' }, + { name: '孙膑', imgSrc: '13.jpg' }, + { name: '周瑜', imgSrc: '14.jpg' }, + { name: 'XXX', imgSrc: '15.jpg' }, + { name: 'XXX', imgSrc: '16.jpg' }, + { name: 'XXX', imgSrc: '17.jpg' }, + { name: 'XXX', imgSrc: '18.jpg' }, + { name: 'XXX', imgSrc: '19.jpg' }, + { name: 'XXX', imgSrc: '20.jpg' } +] +~~~ + + + +### 拓展作业2 + +需求: 根据数据完成表格渲染 + +效果如下: + +![67332719365](assets/1673327193659.png) + +功能需求: + +1. 表格行要求 编号、科目、成绩、和 删除链接 +2. 最后计算出总分 和 平均分 + +数据如下: + +~~~javascript +let data = [ + { subject: '语文', score: 46 }, + { subject: '数学', score: 80 }, + { subject: '英语', score: 100 }, +] +~~~ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\346\241\210\344\276\213\351\235\231\346\200\201\346\250\241\346\235\277.html" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\346\241\210\344\276\213\351\235\231\346\200\201\346\250\241\346\235\277.html" new file mode 100644 index 0000000000000000000000000000000000000000..759013b08450448ba4cb4b3335ebe09737e191af --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\346\241\210\344\276\213\351\235\231\346\200\201\346\250\241\346\235\277.html" @@ -0,0 +1,80 @@ + + + + + + + + + + Document + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + +
编号科目成绩操作
+ 暂无数据 +
+
+ +
+ + + + + + \ No newline at end of file diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/styles/index.css" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/styles/index.css" new file mode 100644 index 0000000000000000000000000000000000000000..22a865da5d9502d6e6e18d1adeb9e234f895fb72 --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/styles/index.css" @@ -0,0 +1,83 @@ +.score-case { + width: 1000px; + margin: 50px auto; + display: flex; +} +.score-case .table { + flex: 4; +} +.score-case .table table { + width: 100%; + border-spacing: 0; + border-top: 1px solid #ccc; + border-left: 1px solid #ccc; +} +.score-case .table table th { + background: #f5f5f5; +} +.score-case .table table tr:hover td { + background: #f5f5f5; +} +.score-case .table table td, +.score-case .table table th { + border-bottom: 1px solid #ccc; + border-right: 1px solid #ccc; + text-align: center; + padding: 10px; +} +.score-case .table table td.red, +.score-case .table table th.red { + color: red; +} +.score-case .table .none { + height: 100px; + line-height: 100px; + color: #999; +} +.score-case .form { + flex: 1; + padding: 20px; +} +.score-case .form .form-item { + display: flex; + margin-bottom: 20px; + align-items: center; +} +.score-case .form .form-item .label { + width: 60px; + text-align: right; + font-size: 14px; +} +.score-case .form .form-item .input { + flex: 1; +} +.score-case .form .form-item input, +.score-case .form .form-item select { + appearance: none; + outline: none; + border: 1px solid #ccc; + width: 200px; + height: 40px; + box-sizing: border-box; + padding: 10px; + color: #666; +} +.score-case .form .form-item input::placeholder { + color: #666; +} +.score-case .form .form-item .cancel, +.score-case .form .form-item .submit { + appearance: none; + outline: none; + border: 1px solid #ccc; + border-radius: 4px; + padding: 4px 10px; + margin-right: 10px; + font-size: 12px; + background: #ccc; +} +.score-case .form .form-item .submit { + border-color: #069; + background: #069; + color: #fff; +} diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/styles/index.less" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/styles/index.less" new file mode 100644 index 0000000000000000000000000000000000000000..d2c14b109076b3606e6cff98983d9154edb209bb --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/styles/index.less" @@ -0,0 +1,82 @@ +.score-case { + width: 1000px; + margin: 50px auto; + display: flex; + .table { + flex: 4; + table { + width: 100%; + border-spacing: 0; + border-top: 1px solid #ccc; + border-left: 1px solid #ccc; + th { + background: #f5f5f5; + } + tr:hover td { + background: #f5f5f5; + } + td, + th { + border-bottom: 1px solid #ccc; + border-right: 1px solid #ccc; + text-align: center; + padding: 10px; + &.red { + color: red; + } + } + } + .none { + height: 100px; + line-height: 100px; + color: #999; + } + } + .form { + flex: 1; + padding: 20px; + .form-item { + display: flex; + margin-bottom: 20px; + align-items: center; + } + .form-item .label { + width: 60px; + text-align: right; + font-size: 14px; + } + .form-item .input { + flex: 1; + } + .form-item input, + .form-item select { + appearance: none; + outline: none; + border: 1px solid #ccc; + width: 200px; + height: 40px; + box-sizing: border-box; + padding: 10px; + color: #666; + } + .form-item input::placeholder { + color: #666; + } + .form-item .cancel, + .form-item .submit { + appearance: none; + outline: none; + border: 1px solid #ccc; + border-radius: 4px; + padding: 4px 10px; + margin-right: 10px; + font-size: 12px; + background: #ccc; + } + .form-item .submit { + border-color: #069; + background: #069; + color: #fff; + } + } +} \ No newline at end of file diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/\346\210\220\347\273\251\346\241\210\344\276\213\351\235\231\346\200\201\346\250\241\346\235\277.html" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/\346\210\220\347\273\251\346\241\210\344\276\213\351\235\231\346\200\201\346\250\241\346\235\277.html" new file mode 100644 index 0000000000000000000000000000000000000000..bca31c50735bc50f3d4470994985cd282bd1390c --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\346\210\220\347\273\251\350\241\250\346\241\210\344\276\213/\346\210\220\347\273\251\346\241\210\344\276\213\351\235\231\346\200\201\346\250\241\346\235\277.html" @@ -0,0 +1,76 @@ + + + + + + + + + Document + + + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
编号科目成绩操作
1语文46删除
2英语80删除
3数学100删除
+ 暂无数据 +
+ 总分:246 + 平均分:79 +
+
+ +
+ + + + + + \ No newline at end of file diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/css/hero.css" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/css/hero.css" new file mode 100644 index 0000000000000000000000000000000000000000..599aec96c1705b88d7f688aee321b2ba4fbb570f --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/css/hero.css" @@ -0,0 +1,56 @@ +* { + margin: 0; + padding: 0; +} + +ul { + list-style: none; +} + +a { + width: 150px; + height: 30px; + text-decoration: none; + display: block; + margin: 10px auto; + background: goldenrod; + color: #fff; + border-radius: 15px; + line-height: 30px; +} + +a:hover { + background: gold; + color: #666; +} + +body { + background: #000; + text-align: center; +} + +.list { + display: flex; + flex-wrap: wrap; + width: 500px; + margin: 20px auto; +} + +.list li { + position: relative; + transition: all 1s; + margin-top: 15px; +} + +.list li:first-child { + margin-left: 0; +} + +.list li:hover { + transform: scale(1.3); + z-index: 999; +} + +.list li img { + width: 100px; +} \ No newline at end of file diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/hero(\345\255\246\347\224\237\347\273\203\344\271\240).html" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/hero(\345\255\246\347\224\237\347\273\203\344\271\240).html" new file mode 100644 index 0000000000000000000000000000000000000000..0d70799e06f06472d605a0b777884c9ff9e69f21 --- /dev/null +++ "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/hero(\345\255\246\347\224\237\347\273\203\344\271\240).html" @@ -0,0 +1,46 @@ + + + + + + + + 渲染英雄列表案例 + + + + + + + + + \ No newline at end of file diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/01.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/01.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..013418af4a5b633283c7929ec4dcdcbce67d7d53 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/01.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/02.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/02.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..c3db7071cba5ed750a9f1e047542be64bbfb99e4 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/02.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/03.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/03.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..8dd48e0cd143874c199a66628dba432a87b5acde Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/03.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/04.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/04.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..703b45cfe572186ed3d20ca8acde28412280a52c Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/04.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/05.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/05.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..098236b698e56603a69399758e6ac6dbb9b804b4 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/05.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/06.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/06.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..5f650946c2ad6a398b29d5eda4d402bbc11fa0e5 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/06.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/07.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/07.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..84bacfebd91e6ff061c01f3b08a3532738226c62 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/07.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/08.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/08.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..fb3cbdadf4cd83ad98e46152fb5a2b3ee0b33b4e Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/08.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/09.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/09.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..f9885ce68ee5b297501e82b6c5ee9bce90d0a6b3 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/09.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/10.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/10.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..aa8ed9047634475be555be81574ff995dd11bc6e Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/10.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/11.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/11.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..bb6609f15d2c21b3ad03ebbabd6ff03fd0f6fc35 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/11.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/12.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/12.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..f17a900ee88c7ae285fbcb2f207f7874ced45e5a Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/12.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/13.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/13.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..20bcfbc1539057012fc54df916252860337b2c7c Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/13.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/14.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/14.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..11bd106f2b9989dad9f96bcca38eef47c746b071 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/14.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/15.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/15.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..b17917bc831faa1a82a46dbc459c3054e54163a0 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/15.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/16.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/16.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..f733ad264f3dd9d7332df475eb77da44c491679c Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/16.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/17.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/17.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..1ccad0e6c770104a46216138237ce985560b3644 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/17.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/18.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/18.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..2c35dcc05ae8a1729b94cc3e5df938f8f9cfca5a Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/18.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/19.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/19.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..df2b53e562a41b116ceea014318984b52abedfa5 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/19.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/20.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/20.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..872c8277e36a7aab626dffa48f022a79d0f989eb Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/20.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/21.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/21.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..a5300d6c2ab6dcf93e6404a6644f7b51c26b5933 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/21.jpg" differ diff --git "a/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/22.jpg" "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/22.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..2374e726b5bae7dad6c3b13844534f5bdfe99920 Binary files /dev/null and "b/\345\217\266\345\212\237\347\205\247/20241107 JS\345\257\271\350\261\241/js\345\257\271\350\261\241\351\242\230\347\233\256/\346\213\223\345\261\225\344\275\234\344\270\232/\350\213\261\351\233\204\345\210\227\350\241\250\346\241\210\344\276\213/uploads/heros/22.jpg" differ