摘要: 1 vscode 鼠标滚轮缩放字体: 1. 快捷键ctrl+shift+p 2. 打开setting.json 2. 输入"editor.mouseWheelZoom": true, 2修改快捷键: vs code 默认单行注释: ctrl + / 多行注释 shift+ alt + a ( 可以修 阅读全文
posted @ 2022-06-11 20:09 javascript9527 阅读(59) 评论(0) 推荐(0) 编辑
摘要: https://carbon.now.sh 阅读全文
posted @ 2020-07-10 14:31 javascript9527 阅读(750) 评论(0) 推荐(0) 编辑
摘要: https://jsbin.com/jucimoremi/edit?html,css,js,console jsbin 阅读全文
posted @ 2020-06-30 15:58 javascript9527 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 什么是GSAP? GSAP(GreenSock Animation Platform)是一个从flash时代一直发展到今天的专业动画 官网地址:http://www.greensock.com/ github地址:https://github.com/greensock/GreenSock-JS/ 阅读全文
posted @ 2020-03-26 12:47 javascript9527 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 什么是bfc? 表单输入框placeholder颜色怎么改? input::-webkit-input-placeholder { color: yellow } 阅读全文
posted @ 2022-08-31 15:35 javascript9527 阅读(32) 评论(0) 推荐(0) 编辑
摘要: <el-form-item label="服务费用" prop="serviceFee"> <el-input v-model="formOffer.serviceFee" oninput="value=value.replace(/^\.+|[^\d.]/g,'')" ></el-input></ 阅读全文
posted @ 2022-07-26 22:08 javascript9527 阅读(56) 评论(0) 推荐(0) 编辑
摘要: https://www.zhihu.com/question/37400041/answer/2584791590 阅读全文
posted @ 2022-07-26 13:44 javascript9527 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 取消发送中的请求 const CancelToken = axios.CancelToken window.cancle = null export const getImagePhoto = params => { return jsonRequest({ url: '', method: 'ge 阅读全文
posted @ 2022-06-30 15:07 javascript9527 阅读(253) 评论(0) 推荐(0) 编辑
摘要: //防抖 在事件被触发n秒后再执行回调,如果在这n秒内又被触发,则重新计时,重新触发定时器。 function handle() { console.log(Math.random().toFixed(2)) } let timer function fd(fn){ if(timer){ clear 阅读全文
posted @ 2022-06-27 17:12 javascript9527 阅读(64) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-04-28 14:30 javascript9527 阅读(0) 评论(0) 推荐(0) 编辑
摘要: /* * @Descripttion: 导入——利用file-saver实现 * @Author: zhou1333 * @Date: 2021 */ <template> <div> <div class="content"> <ul id="con1" ref="con1" :class="{a 阅读全文
posted @ 2022-04-19 22:09 javascript9527 阅读(298) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-04-19 21:11 javascript9527 阅读(25) 评论(0) 推荐(0) 编辑
摘要: <template> <div id="app"> <transition :name="transitionName"> <keep-alive :exclude="excludeList"> <router-view/> </keep-alive> </transition> <div clas 阅读全文
posted @ 2022-04-01 13:33 javascript9527 阅读(221) 评论(0) 推荐(0) 编辑