摘要:
先来看一个next的核心demo const arr = [ (next) => { console.log(1) next() }, (next) => { console.log(2) next() }, (next) => { console.log(3) }, (next) => { // 阅读全文
摘要:
有时候我们会希望一张长方形的图片完美填充一个正方形的盒子(不拉伸,图片在盒子里面水平垂直居中)。 css的背景background-size的cover可以使背景图完美填充盒子不使图片失真。 如果不想使用使用背景图来解决这个问题可以使用css3的object-fit的cover来解决。 .box { 阅读全文
摘要:
// 首先声明三个对象 const a = {v: 1}; const b = {v: 1}; const c = {v: 1}; /* Object.preventExtensions() 方法让一个对象变的不可扩展,也就是永远不能再添加新的属性。 Object.seal() 方法封闭一个对象,阻 阅读全文
摘要:
* { margin: 0; padding: 0; } html, body, .container { width: 100%; height: 100%; overflow: hidden; } .container { display: grid; /* 开启grid布局 */ grid-t 阅读全文
摘要:
type example typeof String "1" string Number 1 number Boolean true boolean Null null object undefined undefined undefined Object {}/[]等 object Symbol 阅读全文
摘要:
<body> <input type="file" accept="image/*" onchange="loadFile(event)" /> <img id="previewContainer" src="" alt=""/> <script> const output = document.q 阅读全文
摘要:
可滑动,选定的tabItem自动居中,支持x和y两种模式 <template> <div class="scrollBarWrapper" :style="scrollBarWrapperStyle"> <div class="scrollBarContent" :class="direction 阅读全文
摘要:
使用new RegExp('规则','修饰符(匹配模式)')或者/规则/修饰符(匹配模式)来创建一个正则表达式 const reg = /box/; // 检查一个字符串中是否包含字符串'box' const str = 'big box'; 正则的方法 test方法 正则表达式.test(字符串) 阅读全文