Blogger Information
无名小辈
Blog
19
fans
0
comment
0
visits
10717
integral:1
P beans:39
  • List of blog posts
  • 自动滚动轮播图

    2022-08-04 19:04 Read 646 comment 0
  • 电脑端自适应布局

    html{ font-size: 100px; } button{ background-color: aqua; color: rgb(4...

    2022-07-16 18:18 Read 500 comment 0
  • CSS盒子模型

    盒子有两种 1、块级:宽度总是占父级的全部宽度,高度由内容决定。可以自定义宽和高 2、内联级:高度是内容高度,宽度是内容宽度 .box{ width: 200px; height: 200px...

    2022-07-19 21:34 Read 353 comment 0
  • CSS伪类,状态伪类和结构性伪类

    / 状态伪类:当选择得目标对象状态发生改变后,进行什么样的样式设置 / .list > li.first{ color: blueviolet; } .list > li:nth-of-type(1){ ...

    2022-07-07 22:09 Read 399 comment 0
  • VSCode中Emmet的快捷操作

    1、ID、CLASS属性是用来描述标签的box DIV是默认标签,可以不写div 例如: #id{内容} 父子关系用“ > ” 来操作兄弟关系用“ + ” 来操作重复生成用“ * ” 来操作序号: $...

    2022-07-06 22:57 Read 398 comment 0
  • CSS选择器种类

    选择器种类1 标签 选择器2 属性 选择器3 群组 选择器4 通配 选择器 上下文 选择器种类/* 1 子元素 : > */ul > li{}/* 2 后代元素 : 空格 */ul li{}/* 3 相令兄弟 : + */ul li+*{ /*...

    2022-07-06 22:51 Read 571 comment 0
  • CSS选择器权重

    /* 百(id) 十(class) 个(tag) *//* 0,0,1 */h1{ color: green;}/* 0,0,2 */body h1{ color: limegreen;}/* 0,1,0 */.h{ color: ...

    2022-07-06 22:46 Read 352 comment 0
  • VSCode的常规使用

    vscode下的各种插件插件:live server 实时显示编辑文件内容 联写:”editor.fontLigatures”: false 插件:Dracula Official 吸血鬼主题编辑窗口主题 darcula official目录窗口...

    2022-07-06 22:44 Read 410 comment 0
  • MarkDown的常规使用

    MarkDown格式HTML 文件``` JS 文件```const app='商城' PHP 文件```$var = 22; 表格显示 姓名 性别 年龄 张三 男 52 李...

    2022-07-06 22:34 Read 307 comment 0
  • vue编程,简单标签 v-text v-html v-once v-bind:属性名 v-bind:style="" v-bind:class v-on:事件名

    v-bind:属性名 简写:属性名 v-bind:style=”” v-bind:class v-on:事件名 简写:事件名 v-on:click v-on:input

    2022-08-13 20:43 Read 460 comment 0
  • 自动轮播图 (鼠标悬停、移出后,按鼠标当前位置自动轮播)

    2022-08-05 17:56 Read 642 comment 0
  • 自动滚动轮播图(鼠标悬停 暂停轮播)

    2022-08-05 10:00 Read 703 comment 0
  • 超简单的选项卡

    CSS样式 * { margin: 0; padding: 0; box-sizing: border-box; } li { list-style: none; } a { color: #474747; ...

    2022-08-04 00:21 Read 522 comment 0
  • javaScript基础知识,命名规则、变量、函数、剑头函数

    let b = 11000; console.log(b); // 变量用小写字母,变量标识:可以用字母、数字、下划线、$符,但不能以数字开头 let bl = '变量'; // 常量用大写字母,常量标识:大写字母之间...

    2022-07-28 22:25 Read 392 comment 0
  • grid布局常用属性

    1、创建grid容器 display:grid;2、设置容器中单元格的数量 grid-template-rows: repeat(3,10em);grid-template-columns: repeat(3,10em);3、排列顺序 /* 按照列排...

    2022-07-23 23:23 Read 904 comment 0