CPU和存储器 [TOC] 一、计算机的基本组成 下图展示的就是计算机的基本组成。 1、输入设备是什么?其实就是键盘、鼠标、摄像头等等。 2、输出设备是什么?如音响、显示器、打印机等等。 3、存储器,可以先简单理解为存放数据的地方。 4、CPU即中央处理器(“Central Processing U ...
分类:
其他好文 时间:
2020-01-04 15:58:25
阅读次数:
203
CSS3(3) 2D变形(transform) 2D变形是CSS3中具有颠覆性的特征之一,它常用的属性有: (translate)、 (scale)、 (rotate)、 (skew)。 一、2D变形语法 1、移动 (translate) 移动的属性: 比如设置为: 运行结果 从上面运行结果可以看出 ...
分类:
Web程序 时间:
2020-01-01 23:22:41
阅读次数:
133
Given a linked list, rotate the list to the right by k places, where k is non-negative. Example 1: Input: 1->2->3->4->5->NULL, k = 2 Output: 4->5->1-> ...
分类:
其他好文 时间:
2020-01-01 11:55:07
阅读次数:
52
1. rotate 旋转 旋转指的是让元素在二维平面内顺时针或者逆时针旋转 2. 语法、使用步骤: (1)给元素添加转换属性 (2)属性值为 , 如 顺时针方向旋转 30度 3. 重点知识点 里面跟度数,单位是 角度为正时,顺时针,角度为负时,逆时针 默认旋转的中心点是元素的中心点 4. 代码演示 ...
分类:
Web程序 时间:
2019-12-31 20:10:42
阅读次数:
105
转换综合写法以及顺序问题 1. 知识要点 同时使用多个转换,其格式为 顺序会影响到转换的效果(先旋转会改变坐标轴方向) 但我们同时有位置或者其他属性的时候,要将 位移放到最前面 2. 代码演示 ...
分类:
其他好文 时间:
2019-12-31 20:07:16
阅读次数:
96
reverse、rotate、permutation ...
分类:
编程语言 时间:
2019-12-30 19:43:32
阅读次数:
62
在oppo R11 操作系统:Android8.1.0手机上运行h5 ui自动化用例时,报错:An unknown server-side error occurred while processing the command. Original error: Error executing adb ...
分类:
移动开发 时间:
2019-12-29 16:52:41
阅读次数:
142
总遇到一个报错: 1 Request processing failed; nested exception is org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): top.bigking ...
分类:
其他好文 时间:
2019-12-29 16:42:27
阅读次数:
103
题号 题目链接 说明 基础 27 Remove Element 26 Remove Duplicates from Sorted Array 80 Remove Duplicates from Sorted Array II 277 Find the Celebrity 189 Rotate Arr ...
分类:
其他好文 时间:
2019-12-29 12:57:11
阅读次数:
77
css线性背景 background:linear gradient(20deg, ccffff, ffcccc); transform transform:scale(1.5); transform:skewX(10deg); transform:rotate(10deg); animation ...
分类:
Web程序 时间:
2019-12-23 16:57:34
阅读次数:
157