capitalize
/* 首字母大写 */
text-transform: capitalize;
...
yekong
3年前 (2021-09-16)
喜欢
italic
通过使用italic实现文字的倾斜,当然也可以使用标签来实现,比如html标签em默认文字就是倾斜的。
font-style: italic;
当我们想让倾斜的文字恢复正常,比如em不想让em标签倾斜
em {
font-style: normal;
...
yekong
3年前 (2021-09-16)
喜欢
css权重从低到高排序
规则
粒度
*
0000
标签,伪元素
0001
class,类属性值
0010
ID
0100
行内样式
1000
*< 标签,伪元素< class,类属性值< ID <行内样式
如果需要提升...
yekong
3年前 (2021-09-16)
喜欢
演示地址:
点击右下角布防时间查看效果
组件
<template>
<div class="c-weektime">
<div class="c-schedue"></div>
...
yekong
3年前 (2021-09-15)
喜欢
纵向合并
例合并2列
rowspan="2"
<tr>
<td rowspan="3">
裸眼视力
</td>
&l...
yekong
3年前 (2021-09-15)
喜欢
JS小数转为整数
下退 floor
舍小数
Math.floor(12.9999) = 12
上进 ceil
只要有小数就进一
Math.ceil(12.1) = 13;
四舍五入 round
Math.round(12.5) = 13
Math.round(12.4) =...
yekong
3年前 (2021-09-14)
喜欢
var a = ['1', '2', '3', '4', '5', '6', '7', '8', '9']
a.map(String);...
yekong
3年前 (2021-09-13)
喜欢
var a = ['1', '2', '3', '4', '5', '6', '7', '8', '9']
a.map(Number);...
yekong
3年前 (2021-09-13)
喜欢
重要参数 inverse
inverse: true
drawLine() {
window.addEventListener("resize", this.drawLine);
let myChart = this.$ec...
yekong
3年前 (2021-09-13)
喜欢
itemStyle : {
normal : {
label : {
show : false
},
labelLine : {
...
yekong
3年前 (2021-09-13)
喜欢