上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 97 下一页
摘要: css滚动条占空间的解决方法 overflow-y: overlay; 滚动条应该是悬浮在上面了 阅读全文
posted @ 2021-06-03 11:38 newmiracle宇宙 阅读(913) 评论(0) 推荐(0) 编辑
摘要: javascript 生成blob url的方法 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Blob Url</title> </head> <body> <video id="video" width 阅读全文
posted @ 2021-06-02 09:51 newmiracle宇宙 阅读(2196) 评论(0) 推荐(0) 编辑
摘要: 谷歌浏览器绕过微信授权登陆的方法 pc微信打开 链接 然后charles 找到cookie 然后用谷歌浏览器editcookie 。。设置上去就好了 阅读全文
posted @ 2021-05-25 17:42 newmiracle宇宙 阅读(1150) 评论(0) 推荐(0) 编辑
摘要: javascript tweenmax做倒计时的方法 <div class="p2_wrap1_wrap1"id="scoreDisplay">30.00</div> var demo = { score: 30 }, scoreDisplay = document.getElementById(" 阅读全文
posted @ 2021-05-21 14:29 newmiracle宇宙 阅读(90) 评论(0) 推荐(0) 编辑
摘要: php SSL certificate problem: unable to get local issuer certificate 这是 SSL 证书问题所致 下载 CA 证书 你可以从 http://curl.haxx.se/ca/cacert.pem 下载 在 php.ini 中配置 CA 阅读全文
posted @ 2021-05-12 09:19 newmiracle宇宙 阅读(250) 评论(0) 推荐(0) 编辑
摘要: PHP array_reduce原理 <?php function myfunction($v1,$v2) { $v1.='wef'; return $v1 . "-" . $v2; } $a=array("Dog","Cat","Horse"); print_r(array_reduce($a," 阅读全文
posted @ 2021-05-11 12:29 newmiracle宇宙 阅读(72) 评论(0) 推荐(0) 编辑
摘要: php composer.lock作用 锁定版本 就是下载好文件 然后锁定版本 以后更新都是这个版本不会更改 如果没有lock 那就直接从服务器下载最新的版本 阅读全文
posted @ 2021-05-10 10:56 newmiracle宇宙 阅读(59) 评论(0) 推荐(0) 编辑
摘要: javascript原型链理解 function Fn() { this.n = 20 } Fn.prototype.say= function() { console.log(this.n) } var deb = new Fn() 不停的__proto__往下搜索有没有相应的方法和属性 prot 阅读全文
posted @ 2021-05-08 11:48 newmiracle宇宙 阅读(33) 评论(0) 推荐(0) 编辑
摘要: threejs 点击物体射线检测碰撞 <!DOCTYPE html> <html> <head> <title></title> <style> canvas { width: 100%; height: 100% } </style> <script src="/moban/js/three.js 阅读全文
posted @ 2021-05-07 10:59 newmiracle宇宙 阅读(1285) 评论(0) 推荐(0) 编辑
摘要: PHP关闭错误提示自定义错误页面 ini_set("display_errors", "OFF");//关闭错误提示 fffffwfe 那就是显示 当然你可以自定义页面 去nginx去改 error_page 500 502 503 504 /50x.html; location = /50x.ht 阅读全文
posted @ 2021-05-06 10:46 newmiracle宇宙 阅读(98) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 97 下一页