摘要:
百分比布局,也叫做流式布局;清除移动端默认的点击高亮效果:-webkit-tap-highlight-color:transparent;base.css:*,::before,::after{ padding:0; margin:0; -webkit-box-sizing:border-box; 阅读全文
摘要:
阅读全文
摘要:
... 阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
draggable 属性规定元素是否可拖动(HTML5 新增)语法:<element draggable="true|false|auto">true //规定元素是可拖动的。false //规定元素是不可拖动的。auto //使用浏览器的默认特性。 阅读全文
摘要:
1.let, const 都是块级作用域,其有效范围仅在代码块中。 //es5 if(a==1){ var b = 'xxx'; } console.log(b);//xxx //es6 if(a==1){ let b = 'xxx'; } console.log(b);//undefined ---------------------------------------- const... 阅读全文
摘要:
1.在config的index.js下面进行常用跨域配置代码;proxyTable: { '/apis': { //使用"/api"来代替"http://xxxx.cn" target: 'http://xxxx.cn', //源地址 (接口域名) changeOrigin: true, //改变源 (是否跨域) pathRewrite: { '... 阅读全文