webgl 设置透明度

启用 gl.blendFunc(gl.SRC_ALPHA, gl.ONE); gl.enable(gl.BLEND); gl.disable(gl.DEPTH_TEST);
emer 发布于  2021-2-23 13:56 

1欧元买1年vps

https://coupons.virtono.com/c/MzkyOV41MjMzNw==
emer 发布于  2021-2-20 11:05 

axios请求超时,设置重新请求

axios.interceptors.response.use(undefined, function axiosRetryInterceptor(err) { var config = err.config; // If config does not exist or the retry option is not set, reject...
emer 发布于  2021-2-18 16:20 

7zip用密码加密

yum -y install p7zip 7za -p  -mhe -r a destOutputFileName srcFileOrDir1  srcFileOrDir2
emer 发布于  2021-2-3 15:19 

js中文汉字按拼音排序

JavaScript 提供本地化文字排序,比如对中文按照拼音排序,不需要程序显示比较字符串拼音。 String.prototype.localeCompare 在不考虑多音字的前提下,基本可以完美实现按照拼音排序。 在没有出现意外的情况下,各个支持 localeCompare 的浏览器都很正常。最近将 Chrome...
emer 发布于  2021-2-3 11:00 

支付宝如何多扫几张福?

1.扫福:每天可以扫到3张福卡。 2.写福:每天可以获得2张福卡,大概率能得到敬业福。 3.支付宝搜索:银泰百货,肯德基,麦当劳,滴滴,蒙牛,一汽大众,大悦城,爱琴海,星河,消费券,砂之船奥莱等可额外得福卡。 4.APP:这些APP打开。用支付宝登录都可随机获得福卡,但不是每个APP都能得到福卡。 ...
emer 发布于  2021-2-1 15:16 

display:flex下子元素宽度无效

在子元素上设置: width:60px; flex-shrink:0;
emer 发布于  2021-1-30 15:56 

引入google recaptcha 谷歌人机身份验证

官方文档 https://developers.google.com/recaptcha/intro  管理后台 https://www.google.com/recaptcha/admin/site/350006937  填写资料 https://www.google.co...
emer 发布于  2021-1-21 14:36 

vue-grid-layout 支持ie11 description: "缺少 ':'"

我用的 "vue-grid-layout": "^2.3.11",这个版本,当然12版本也有问题,ie11不行,发现包是es6编写,有些属性不支持ie, 所以首先我们配置babel-loader转换下 我用的vuecli3如下: module.exports&nbs...
emer 发布于  2021-1-19 16:39 

JS深拷贝

JSON.sringify 和 JSON.parse  这是JS实现深拷贝最简单的方法了,原理就是先将对象转换为字符串,再通过JSON.parse重新建立一个对象。 但是这种方法的局限也很多: 不能复制function、正则...
emer 发布于  2021-1-18 15:14