Top
Fork me on Gitee My Github
摘要: 1. safari input框type["password"] type["text"] 聚焦后右侧出现图标 input::-webkit-credentials-auto-fill-button , // password input::-webkit-contacts-auto-fill-bu 阅读全文
posted @ 2020-05-07 12:24 lisashare 阅读(718) 评论(0) 推荐(0) 编辑
摘要: 调用 说明:焦点在某个input元素上,此时快速滑动页面,由于是absolute定位,光标跟不上滚动的速度。导致错位问题。解决方案就是在你滑动页面的时候直接让input失去焦点,隐藏光标。 阅读全文
posted @ 2020-05-05 14:52 lisashare 阅读(237) 评论(0) 推荐(0) 编辑
摘要: # jq toast提示 ## css ``` #toastTip { display: none; position: fixed; top: 46%; left: 50%; transform: translate(-50%, -50%); padding: 0.1rem .16rem; min 阅读全文
posted @ 2020-05-04 17:26 lisashare 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 版本控制器 好处:备份还原(版本回退);协同修改;权限控制等等 集中式版本控制系统 代表:SVN(Apache Subversion),CVS 版本库是集中存放在中央服务器的 ,每个开发人员电脑里只有其中一个版本。干活的时候,用的都是自己的电脑,所以要先从中央服务器取得最新的版本,然后开始干活,干完 阅读全文
posted @ 2020-05-02 15:36 lisashare 阅读(148) 评论(0) 推荐(0) 编辑
摘要: ``` ``` 阅读全文
posted @ 2020-04-29 08:56 lisashare 阅读(161) 评论(0) 推荐(0) 编辑
摘要: git 使用 全局配置 首次安装git后进行一些配置,提交代码的时候就会将用户名和邮箱存入版本库中,其他开发人员就可以看到是谁提交的代码 设置全局用户名:git config --global user.name github上的用户名 设置全局的邮箱:git config --global use 阅读全文
posted @ 2020-04-26 14:14 lisashare 阅读(221) 评论(0) 推荐(0) 编辑
摘要: CSS 选择符有哪些 1.id选择器( id) 2.类选择器(.class) 3.标签选择器(div,h1,p) 4.相邻选择器(h1 + p) 5.子选择器(ul li) 6.后代选择器(li a) 7.通配符选择器( ) 8.属性选择器(a[title]) 9.伪类选择器(a:hover,li: 阅读全文
posted @ 2020-04-21 11:57 lisashare 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 编写函数convert(money),传入金额,将金额转换为千分位表示法,如输入 1293213 ,输出 1,293,213 function convert(money){ if(!money){return} var m = money.toString().split('.'); var m1 阅读全文
posted @ 2020-04-20 23:00 lisashare 阅读(834) 评论(0) 推荐(0) 编辑
摘要: window系统,window右键 --> 控制面板 --> Internet选项 --> 切换到内容 --> 点击清除SSL状态 --> OK window10 我的电脑 --> 在空白处右键 --> 属性 --> 控制面板主页 --> 网络和Internet --> Internet选项 --> 阅读全文
posted @ 2020-04-12 21:36 lisashare 阅读(6112) 评论(0) 推荐(0) 编辑
摘要: 需求:移动端,做如下图片的一个海报,可以长按保存,其中标题文字,说明文字,logo图片,二维码(动态生成二维码)图片,都是可变元素,其余部分是一张图片! 我的canvas学习笔记 "gitlab" 如果前端来做,首先,我想到的就是利用canvas绘制出来,然后,转换成img,放在页面中,这样用户就可 阅读全文
posted @ 2020-04-12 21:16 lisashare 阅读(2900) 评论(0) 推荐(0) 编辑
摘要: ts+react 如果感兴趣typescript的基础代码学习可以参考我的 "gitlab" 安装命令 全局安装react npm install g create react app 搭建ts框架 create react app ts react typescript 切换到ts react并运 阅读全文
posted @ 2020-03-26 12:11 lisashare 阅读(669) 评论(0) 推荐(0) 编辑
摘要: 下方图片中的按钮下面大片空白就是手机软键盘没有折回出现的,如果在软键盘没有恢复就点击按钮进行操作,页面按钮失效,页面卡顿不能操作了,所以影响还是很大的,查询过原因是因为微信改版出现了这种现象。 解决方式参考: //键盘收起以后页面缩回 $(".form input").on("blur",funct 阅读全文
posted @ 2020-03-24 19:59 lisashare 阅读(1055) 评论(0) 推荐(0) 编辑
摘要: create a new repository on the command line echo "# vue-mall" >> README.md git init git add README.md git commit -m "first commit" git branch -M main 阅读全文
posted @ 2020-03-20 18:06 lisashare 阅读(1301) 评论(0) 推荐(0) 编辑
摘要: HTML PHP 阅读全文
posted @ 2020-03-19 14:46 lisashare 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 九九乘法表 阅读全文
posted @ 2020-03-19 12:40 lisashare 阅读(95) 评论(0) 推荐(0) 编辑