驼峰转连字符(中划线) s = s.replace(/([A-Z])/g,"-$1").toLowerCase();
连字符转驼峰function toHump(name) {
return name.replace(/\-(\w)/g, function(all, let......
驼峰转连字符(中划线) s = s.replace(/([A-Z])/g,"-$1").toLowerCase();
连字符转驼峰function toHump(name) {
return name.replace(/\-(\w)/g, function(all, let......
content-visibility作用
为元素设置 CSS 属性content-visibility: auto;,可以跳过屏幕外内容的渲染,减少页面渲染时间。
它允许我们推迟我们选择的HTML元素渲染
风险
content-visibility会将分配给它的元素的高度(height)视......
常用
移动到行首 control + A
移动到行尾 control + E
全部标签
新建标签:command + t
关闭标签:command + w
切换标签:command + 数字 / command + 左右方向键
切换全屏:command + enter
查找:com......