上一页 1 2 3 4 5 6 7 8 ··· 97 下一页
摘要: gsap 自定义 ease曲线 https://greensock.com/docs/v3/Eases C命令多次贝塞尔不会用 怎么用L 直线代替 M0,0 L0.5,0.5 L0.8,0.5 L1,1 tween.progress() 获取进度 阅读全文
posted @ 2023-01-01 09:43 newmiracle宇宙 阅读(261) 评论(0) 推荐(0) 编辑
摘要: vue could not resolve解决方法 package.json package-lock.json改成正确的文件就好了 最好的方法就是重新新建项目 然后npm install安装 这样保证不会有版本的问题出现 阅读全文
posted @ 2022-10-28 09:30 newmiracle宇宙 阅读(801) 评论(0) 推荐(0) 编辑
摘要: python下载视频的方法 you-get pip install you-get 安装 稳的一匹 阅读全文
posted @ 2022-10-09 16:30 newmiracle宇宙 阅读(33) 评论(0) 推荐(0) 编辑
摘要: import win32gui, win32ui, win32con, win32api import time # GetDesktopWindow 获得代表整个屏幕的一个窗口(桌面窗口)句柄 hd = win32gui.GetDesktopWindow() # 获取所有子窗口 hwndChild 阅读全文
posted @ 2022-09-29 22:10 newmiracle宇宙 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 重启php-fpm的方法 netstat -ntlp 找到进城id 然后 kill -9 进城 然后再循环 返回查看进城id 直到php-fpm端口关闭位置 阅读全文
posted @ 2022-09-28 17:43 newmiracle宇宙 阅读(111) 评论(0) 推荐(0) 编辑
摘要: vuecli公用node_module的方法 直接软连接 mklink /D "C:\Users\gonnsai0\AppData\Local\Google\Chrome\User Data\Default\Cache" "D:\Chrome\Cache" 就行了 反正这个文件只有读取 不会写入 软 阅读全文
posted @ 2022-09-05 10:07 newmiracle宇宙 阅读(78) 评论(0) 推荐(0) 编辑
摘要: from random import randint from PIL import Image class SearchEntry(): def __init__(self, x, y, g_cost, f_cost=0, pre_entry=None): self.x = x self.y = 阅读全文
posted @ 2022-08-20 10:34 newmiracle宇宙 阅读(82) 评论(0) 推荐(0) 编辑
摘要: python获取图片中某个像素的坐标 模糊查询 from PIL import Image def zhaose(pic,r1,g1,b1): img = Image.open(pic) pixels = img.load() width, height = img.size xy={}; xy[' 阅读全文
posted @ 2022-08-16 00:01 newmiracle宇宙 阅读(1281) 评论(0) 推荐(0) 编辑
摘要: -- 测试协程 local thread = require('thread') --处理协程的错误 local thread_id = thread.create(function() nLog('2再运行协程') nLog('这里触发了就会继续切换到主线程 不会因为延迟堵塞') msleep(3 阅读全文
posted @ 2022-08-14 10:14 newmiracle宇宙 阅读(214) 评论(0) 推荐(0) 编辑
摘要: local dituxylist={{x=2,y=2},{x=3,y=3}} print(dituxylist[1].x); 对象 数组 阅读全文
posted @ 2022-08-11 12:51 newmiracle宇宙 阅读(15) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 97 下一页