Blogger Information
子墨吖ฅฅ
Blog
28
fans
0
comment
0
visits
11654
integral:0
P beans:58
  • List of blog posts
  • 10.13作业

    MarkDown语法斜体斜体 文本加粗粗体 分割符 段落这是一个段落 这是另一个段落 引用 一级分类 二级分类 三级分类 无序列表 无序列表1无序列表2无序列表3无序列表4 有序列表 有序列表1有序列表2有序列表3有序列表4 单行内容镶嵌e...

    2022-10-14 12:41 Read 371 comment 0
  • 10.21日作业

    状态伪类的拓展及内外边距的使用

    2022-10-21 23:09 Read 361 comment 0
  • 使用Class类实现随机数生成并排列及简易计算

    // 使用class类实现随机数生成并排列及简易计算class Rndnumber { constructor(arr,num) { this.arr = arr this.num = num } get...

    2022-11-05 00:37 Read 349 comment 0
  • 10.28作业

    淘宝首页商品布局index.css布局内容* { padding: 0; margin: 0;}body { width: 100%; height: 100%; background-color: #eee;}.container { ...

    2022-10-30 14:07 Read 349 comment 0
  • 10.31日作业

    *{ margin: 0; padding: 0;}body{ background-color: lightpink; min-height: 2000px;}/*清除列表默认样式*/li{ list-style: n...

    2022-11-01 11:23 Read 340 comment 0
  • 实战评论区及自动回复

    JS部分const insertComment = function (ele,isBtn = false) { if (event.key === 'Enter' || isBtn) { // 1. 非空判断 if...

    2022-11-09 14:25 Read 331 comment 0
  • 11.1日作业

    const USER_NAME = "啊墨"; //常量console.log(USER_NAME);let userName = "子墨"; //变量console.log("hello" + userName);// 命名函数function ...

    2022-11-02 12:26 Read 327 comment 0
  • 11.3日作业

    // 数组的解构let [uname, email] = ['杨过', '123@qq.com']console.log(uname, email);[uname,...arrs] = ['小龙女', '123@qq.com' , '女']conso...

    2022-11-04 00:15 Read 324 comment 0
  • 获取元素的api及dom常用的遍历方法

    JS代码部分 // 获取item的所有li标签 let list = document.querySelectorAll('.item > *') //给所有li标签字体颜色改为红色 (第一种遍历方法) list.forEach(li => (li....

    2022-11-07 22:41 Read 319 comment 0
  • 11.2日作业

    // 1.一维数组const arr = [1,2,3,4,5]console.log(arr[0],arr[4]);// 2.多维数组 (成员还是数组)const arr1 = [ [1,2,3,4,5], [6,7,8,9,10], ...

    2022-11-03 14:08 Read 307 comment 0
  • 10.24日作业

    em是什么?em:浏览器文本的默认字号的相对关键字,通常是16px。em具有动态性和继承性,这是优点。但有时我们非常的需要一个固定值的em,它不应该随着它自身和祖先元素的字号大小而变动,就是rem。 rem是什么?rem是一个固定的值,和html中的...

    2022-10-24 22:30 Read 283 comment 0
  • 10.20作业

    css选择器权重及伪类选择器的使用 Title /*权重为0 0 1*/ h1{ ...

    2022-10-20 22:33 Read 281 comment 0
  • 10.26作业

    2022-10-26 22:11 Read 257 comment 0