摘要:
SheetJS/js-xlsx修改表头 https://blog.csdn.net/juzipidemimi/article/details/90815730 阅读全文
摘要:
给table加一下这个属性:pagination="pagination" 它有不少分页的功能我还不是特别了解 <a-table :columns="columns" :data-source="points.filter((point) => point.type == dataType.key) 阅读全文
摘要:
##iScroll插件(滚动条效果) 先引入iScroll的js文件 iScroll中文网站 http://caibaojian.com/iscroll-5/ 加入id=“wrapper”,给父元素加(如果是ul>li,应该给ul的父元素加) 实例化 <script type="text/javas 阅读全文
摘要:
##响应式和自适应的区别 响应式: 一个 url 可以响应多端 自适应:可以在移动设备上适应(ipad,手机) ####需要做一个项目:PC + 移动 响应式 两个页面(pc,移动) 判断设备,根据当前设备跳转对应的url 阅读全文
摘要:
###语法格式 @media only scrren and (max-width:400px){ 代码 } @media only scrren and (max-width:400px) and (max-width){ 代码 } 举例: @media only screen and (max- 阅读全文
摘要:
##animation [ animation-name ]: 检索或设置对象所应用的动画名称 [ animation-duration ]: 检索或设置对象动画的持续时间 [ animation-timing-function ]: 检索或设置对象动画的过渡类型 [ animation-delay 阅读全文
摘要:
##2D ####位移(和子绝父相中的top,left类似,百分比的话,最大位移距离等于它本身) transform:translate(x,y) transform:translateX(x) transform:translateY(y) 例如:100px*100px的方块最大位移距离(百分比时 阅读全文
摘要:
字体图标的使用 搜索阿里icon,找合适的图标,加入购物车 ,加入项目,创建新项目,下载至本地 把5个字体图标文件放到本地,把css文件放到css文件夹 #####使用 先把css文件引入进来,去网站复制代码,创建i标签,class写iconfont 和 复制的代码 去css文件修改文件路径 ### 阅读全文
摘要:
参考网页https://developer.mozilla.org/zh-CN/docs/Web/API/Document/exitFullscreen 具体 document.onclick = function (event) { if (document.fullscreenElement) 阅读全文
摘要:
代码 Number(value.slice(0, value.length - 1) 阅读全文