会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
春
节
快
乐
阿臻
默默无闻
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
3
4
5
6
7
8
9
10
11
下一页
2020年6月1日
git 创建分支并关联远程分支
摘要: 前提是远程已经建立了需要关联的分支 git checkout -b dev(本地分支名称) origin/dev(远程分支名称)
阅读全文
posted @ 2020-06-01 09:22 阿臻
阅读(893)
评论(0)
推荐(0)
2020年5月22日
关于scroll滚动式的过渡动画
摘要: 解释 现代浏览器陆续意识到了这种需求,scrollIntoView意思是滚动到可视,css中提供了scroll behavior属性,js有Element.scrollIntoView()方法。 scroll behavior scroll behavior属性可取值auto|smooth|inhe
阅读全文
posted @ 2020-05-22 15:38 阿臻
阅读(3863)
评论(0)
推荐(1)
2020年5月15日
适配 iphone 微信h5页面
摘要: ``` @media screen and (max-height:640px) ```
阅读全文
posted @ 2020-05-15 10:33 阿臻
阅读(263)
评论(0)
推荐(0)
2020年5月14日
阻止浏览器回弹效果
摘要: ```document.body.addEventListener('touchmove', function (e) { e.preventDefault(); //阻止默认的处理方式(阻止下拉滑动的效果)}, { passive: false });```
阅读全文
posted @ 2020-05-14 18:11 阿臻
阅读(772)
评论(0)
推荐(0)
js对象格式化为表单数据
摘要: 只适用于 简单的数据转换
阅读全文
posted @ 2020-05-14 18:10 阿臻
阅读(693)
评论(0)
推荐(0)
2020年5月8日
uniapp页面滚动到页面可指定位置
摘要: "uni节点选择器资料" "uni的页面滚动"
阅读全文
posted @ 2020-05-08 11:16 阿臻
阅读(7645)
评论(0)
推荐(0)
css去除按钮点击后的高亮
摘要: ``` -webkit-tap-highlight-color: rgba(0,0,0,0); -webkit-tap-highlight-color: transparent; ```
阅读全文
posted @ 2020-05-08 09:43 阿臻
阅读(4158)
评论(0)
推荐(0)
2020年4月27日
浏览器页面样式去缓存(包括微信浏览器)
摘要: ``` //加上时间戳 ```
阅读全文
posted @ 2020-04-27 10:47 阿臻
阅读(368)
评论(0)
推荐(0)
2020年4月24日
重置vue组件的data数据
摘要: ``` this.form = this.$options.data().form; ```
阅读全文
posted @ 2020-04-24 17:25 阿臻
阅读(923)
评论(0)
推荐(0)
禁止蒙层底部页面跟随滚动
摘要: + html + css
阅读全文
posted @ 2020-04-24 13:53 阿臻
阅读(173)
评论(0)
推荐(0)
上一页
1
···
3
4
5
6
7
8
9
10
11
下一页
公告