11 2021 档案
移动端监听软键盘弹出收起
摘要:// 获取屏幕可用高度 var winHeight = $(window).height(); // 监听窗口变化 $(window).resize(function () { // 获取当前屏幕可用高度 var thisHeight = $(this).height(); if (winHeigh 阅读全文
posted @ 2021-11-17 11:17 夜攸 阅读(130) 评论(0) 推荐(0)
点击事件--水波纹动画
摘要:html <div id="app"></div> css .back_span { position: absolute; transform: translate(-50%, -50%); background-color: rgb(255, 254, 254); border-radius: 阅读全文
posted @ 2021-11-08 10:22 夜攸 阅读(62) 评论(0) 推荐(0)
h5文件下载
摘要:// type1 await getFile(fileUrl).then((res) => { console.log('download',res); let bFile = window.URL.createObjectURL( new Blob([res]) ) this.download(b 阅读全文
posted @ 2021-11-01 13:39 夜攸 阅读(846) 评论(0) 推荐(0)