Loading

上一页 1 2 3 4 5 6 7 ··· 10 下一页
摘要: 大魔头视频解析浏览器插件 插件版本:1.0 高速接口 https://jsap.attakids.com/?url= 综合/B站 https://jx.bozrc.com:4433/player/?url= OK解析 https://okjx.cc/?url= 夜幕 https://www.yemu 阅读全文
posted @ 2021-11-19 15:14 冯叶青 阅读(341) 评论(0) 推荐(0) 编辑
摘要: beforeunload 事件使网页能够触发一个确认对话框,询问用户是否真的要离开该页面。如果用户确认,浏览器将导航到新页面,否则导航将会取消。 onpagehide 事件在用户离开网页时触发 应用场景 当我们想在用户刷新或者关闭浏览器做一些操作时,比如调用接口,就会遇到一些比较有意思的情况,经测试 阅读全文
posted @ 2021-08-02 09:07 冯叶青 阅读(1616) 评论(0) 推荐(0) 编辑
摘要: 基础用法 export default class Base extends Vue { // 变量 private name = "张三"; private a = 1; private b = 2; //计算属性 private get count(): number { return Numb 阅读全文
posted @ 2021-03-22 16:57 冯叶青 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 函数防抖 频繁触发,只在特定的时间内执行一次代码。 应用场景:onrize,onscroll等频繁触发的函数,比如你想获取滚动条的位置,然后执行下一步动作 //函数防抖 function debounce(fn,delay){ let timer = null; return function () 阅读全文
posted @ 2021-03-15 15:47 冯叶青 阅读(122) 评论(0) 推荐(0) 编辑
摘要: node 常用方法 生成密钥 token验证 验证码生成 生成密钥 //生成密钥 generateToken(data, expires = 7200) { const exp = Math.floor(Date.now() / 1000) + expires const cert = fs.rea 阅读全文
posted @ 2021-01-22 16:35 冯叶青 阅读(979) 评论(0) 推荐(0) 编辑
摘要: middleware/jwt.js module.exports = (options, app) => { return async function userInterceptor(ctx, next) { //获取token 获取前端或以其他方式设置的cookie需要设置signed: fal 阅读全文
posted @ 2021-01-22 16:28 冯叶青 阅读(404) 评论(0) 推荐(1) 编辑
摘要: js给页面容器增加水印 /* * 功能:给页面容器增加水印 * * 用法 watermark({ watermark_ele:'#industry-contacts', watermark_txt:`AI固收 ${this.sysUserInfo.phone}`, watermark_width: 阅读全文
posted @ 2021-01-22 15:47 冯叶青 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 功能:基础功能群聊 文件上传 图片上传 表情发送 超链接跳转 注:里面涉及到诸多函数依赖,请忽略,只看主要功能即可 html <template> <div class="container" :style="{'top':'calc('+marginTop+' + 0.16rem)'}"> <di 阅读全文
posted @ 2021-01-21 15:57 冯叶青 阅读(658) 评论(0) 推荐(0) 编辑
摘要: 前端工具箱 复制粘贴 获取随机数 滑动防触发点击事件 获取地址栏参数 函数防抖 js动态加载 css动态加载 h5与app交互封装 js时间格式化 阅读全文
posted @ 2021-01-21 15:04 冯叶青 阅读(372) 评论(0) 推荐(0) 编辑
摘要: 移动端兼容性问题 ios滑动不是很流畅问题 安卓和IOS长安页面会复制文字等 CSS问题 解决ios滑动不是很流畅 -webkit-overflow-scrolling: touch;//滑动容器上加上该css 解决ios input框默认有一层灰色渐变 -webkit-appearance:non 阅读全文
posted @ 2020-10-16 14:22 冯叶青 阅读(182) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 10 下一页