forked from qianguyihao/Web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2019年-前端日记.md
249 lines (167 loc) · 4.95 KB
/
2019年-前端日记.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
### 2019-04-02
Vue屏幕宽度自适应:
<https://blog.csdn.net/qq_25386583/article/details/77161478>
<https://blog.csdn.net/xuaner8786/article/details/81565219>
### 2019-04-07
- 控制iframe中的页面只显示一部分:<https://blog.csdn.net/iteye_18722/article/details/81918563>
### 2019-04-09
```javascript
Date.parse("2019/04/20 18:14:00")
```
上方代码转换的结果,单位是`毫秒`,不是秒。
### 2019-04-23
```javascript
const a = [];
const b = {};
console.log(Boolean(a));
console.log(Boolean(b));
```
上方代码的打印结果均为true。 具体解释,可以看我在 `03-JavaScript基础/03-变量的强制类型转换.md`这篇文章里讲到的**转换为Boolean**。
所以,我们平时在写业务代码的时候,“判断是否为空对象/空数组”,不能直接写成 `if (myObj)`或者`if(myArray)`,会踩坑。
判断是否为空数组,可以用:
```javascript
if (myArray.length)
```
判断是否为空对象,可以用 :
```javascript
if (JSON.stringify(myObj) !== '{}')
```
### 2019-04-26
我们知道,在移动端页面尅发时,单位一般是采用 rem。
设计稿如果是750px宽,那么,默认换算的单位如下:**16px = 1rem**。但是这种换算比较麻烦。我们可以在 html里加上如下代码:
```html
<style>
html {
font-size: 20px;
font-size: 5.3333333vw;
}
</style>
```
这样的话,换算单位就变成了:**20px = 1rem**。
### 2019-05-16
- 数组随机打乱顺序:<https://www.zhihu.com/question/68330851/answer/262111061>
最佳的打乱算法是Fisher-Yates算法。
### 2019-05-16
Vue的全局变量空间:`this.$root.data`,我们可以在这里面存放数据。比如`this.$root.data.skuIdList`。
### 2019-05-17
- css 动画实现闪烁效果:<https://blog.csdn.net/wangxiuyan0228/article/details/80701523>
### 2019-05-20-css3动画水平/镜像翻转
参考链接1:<https://www.oschina.net/question/2443483_247744>
代码实现举例:
```html
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8" />
<title></title>
<style>
@keyframes featuresicon {
0% {
transform: scaleX(1);
}
20% {
transform: scaleX(1);
}
50% {
transform: scaleX(0);
}
80% {
transform: scaleX(1);
}
100% {
transform: scaleX(1);
}
}
.cube {
width: 40px;
height: 40px;
background: url(images/bg2.png) left 0 no-repeat;
animation: featuresicon 1.3s linear alternate none infinite;
}
body {
background-color: cornflowerblue;
}
</style>
</head>
<body>
<div class="cube"></div>
</body>
</html>
```
参考链接2:<https://blog.csdn.net/wjnf012/article/details/78679131>
代码实现:(立体感更强一点)
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
*{
padding: 0;
margin: 0;
}
.cube{
display: block;
color: #ffffff;
text-align: center;
width: 40px;
height: 40px;
border-radius: 4px;
/* background-color: #9a6ad8 */
background: url(images/bg.png) left 0 no-repeat;
animation: proRotate 1.3s ease-in-out 500ms alternate none infinite;
}
@keyframes proRotate {
0%{transform:perspective(200px) rotateY(180deg);}
100%{transform:perspective(200px) rotateY(0deg);}
}
</style>
</head>
<body>
<div class="test_wrap">
<div class="cube"></div>
</div>
<body>
</html>
```
### 2019-05-22-判断字符串是否为纯中文
参考链接:https://blog.csdn.net/wozaixiaoximen/article/details/48340061
### 2019-05-24
- VScode代码格式化后不符合ESLint风格问题处理:<https://blog.csdn.net/SilenceJude/article/details/81589784>
### 2019-05-27-针对 text 文本的属性举例
```css
&_promote {
margin-left: 10px;
display: inline-block;
height: 20px;
padding: 4px;
line-height: 20px;
background: #fff0f0;
border-radius: 4px;
font-size: 20px;
color: #ff4142;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
vertical-align: middle;
}
```
尤其要研究一下 `vertical-align: middle;`这个属性。
### 2019-06-11
已知某背景图片的尺寸是:586 * 931。现只截图图片的上面一部分区域(586 * 810)做展示。代码实现如下:
标签部分:
```html
<div class="img"> </div>
```
css部分:(重点是 background 属性的写法)
```css
.img{
width: 586rpx;
height: 810rpx;
background: url('https://img11.360buyimg.com/jdphoto/s586x931_jfs/t1/27766/15/3237/102443/5c258955Ee307620e/21a744b0d2e065b3.png') 0 0/cover no-repeat;
margin: 0 auto;
}
```
### 2019-08-25
使用hover为div添加边框时,页面布局发生错位的解决办法:https://blog.csdn.net/u014033756/article/details/51049574