上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 36 下一页
摘要: 11 阅读全文
posted @ 2021-09-14 14:38 ꧁执笔小白꧂ 阅读(61) 评论(0) 推荐(0)
摘要: 报错: An error occurred on the server when processing the URL. Please contact the system administrator. If you are the system administrator please click 阅读全文
posted @ 2021-09-13 23:52 ꧁执笔小白꧂ 阅读(230) 评论(0) 推荐(0)
摘要: YG5H2-ANZ0H-M8ERY-TXZZZ-YKRV8 UG5J2-0ME12-M89WY-NPWXX-WQH88 UA5DR-2ZD4H-089FY-6YQ5T-YPRX6 阅读全文
posted @ 2021-09-13 09:58 ꧁执笔小白꧂ 阅读(55) 评论(0) 推荐(0)
摘要: 前言: 现在主流博客系统有wordpress,Z-Blog,emlog,typecho,boblog; 一,wordpress: 目前世界上使用最广泛的博客系统; 适宜个人博客和多人博客(无具有像博客园CSDN主页面一样的简洁展示页面),Php+mysql开源可以二次开发,商业需要授权。 优点:主题 阅读全文
posted @ 2021-09-11 11:53 ꧁执笔小白꧂ 阅读(360) 评论(0) 推荐(0)
摘要: 报错信息: RuntimeError: CUDA out of memory. Tried to allocate 100.00 MiB (GPU 0; 2.00 GiB total capacity; 1.15 GiB already allocated; 0 bytes free; 1.19 G 阅读全文
posted @ 2021-09-07 17:34 ꧁执笔小白꧂ 阅读(2333) 评论(0) 推荐(0)
摘要: 错误信息: OSError: [WinError 1455] 页面文件太小,无法完成操作。 Error loading "C:\Anaconda3\lib\site-packages\torch\lib\caffe2_detectron_ops_gpu.dll" 对策: 把磁盘的虚拟内存调大; “电 阅读全文
posted @ 2021-09-07 17:32 ꧁执笔小白꧂ 阅读(3480) 评论(0) 推荐(1)
摘要: 环境: win10 20H2 需要的安装包: Anaconda3-2021.05-Windows-x86_64.exe pycharm-professional-2021.2.1.exe YoloV5源码 CUDA10.2与CUDNN V8.2.4 pytorch 1.9 选择性安装OpenCV库 阅读全文
posted @ 2021-09-03 22:03 ꧁执笔小白꧂ 阅读(5600) 评论(1) 推荐(0)
摘要: phpstorm: https://www.jetbrains.com/zh-cn/phpstorm/promo/ 阅读全文
posted @ 2021-09-01 15:03 ꧁执笔小白꧂ 阅读(48) 评论(0) 推荐(0)
摘要: private float CountDown = 4;void FixedUpdate(){ CountDown -= 1; } 正确的是改为: CountDown -= Time.deltaTime; 阅读全文
posted @ 2021-08-24 17:11 ꧁执笔小白꧂ 阅读(58) 评论(0) 推荐(0)
摘要: 方案:Canvas里先建一个Panel,Panel下创建Image和btn等其他控件,电脑端分辨率通用。 1,Canvas配置: (1)渲染模式:屏幕空间-摄像机 (2)屏幕大小缩放 (3)屏幕匹配模式:Match Width Or Height (4)匹配:1(高度) 2.Panel:中心锚点布局 阅读全文
posted @ 2021-08-24 10:37 ꧁执笔小白꧂ 阅读(475) 评论(0) 推荐(0)
摘要: 遮盖图片image: 图片类型-已填充、 填充方法-radial 360、 代码控制填充总数达到倒计时转圈的效果。 阅读全文
posted @ 2021-08-20 10:11 ꧁执笔小白꧂ 阅读(113) 评论(0) 推荐(0)
摘要: 1.在移动有刚体物体时使用 rigidBody.MovePosition() 代替 transform.Translate(...),且要在 FixedUpdate() 中使用。 提示:通过坐标转换移动带有刚体的组件对象时,会造成物理引擎整体重新计算 2.场景中的景物,根据主次关系进行标记。不同的主 阅读全文
posted @ 2021-08-16 09:22 ꧁执笔小白꧂ 阅读(87) 评论(0) 推荐(0)
摘要: function Fullscreen() { var elem = document.documentElement; // 判断浏览器设备类型 if (elem.webkitRequestFullScreen) { // 兼容谷歌 elem.webkitRequestFullScreen(); 阅读全文
posted @ 2021-08-14 09:54 ꧁执笔小白꧂ 阅读(107) 评论(0) 推荐(0)
摘要: 一,图片 1,Sprite纹理类型图片: 纹理的设置为Filter Mode为Bilinear; Max Size为2048,超清图片为4096; Format为Truecolor或者Compressed(Compressed占用内存较小,Truecolor更真实); 过滤模式:图片为大尺寸超清时F 阅读全文
posted @ 2021-08-13 15:20 ꧁执笔小白꧂ 阅读(1141) 评论(0) 推荐(0)
摘要: /// <summary> /// 重写Panel-还未实现圆角功能 /// </summary> public class RoundPanel : Panel { private int mMatrixRound = 8; private Color mBack; public Color Ba 阅读全文
posted @ 2021-08-12 14:38 ꧁执笔小白꧂ 阅读(210) 评论(0) 推荐(0)
摘要: #region DropDownList样式重绘 /// <summary> /// 主要为DropDownList样式重绘(特定性较强) /// </summary> public partial class ComboboxEx : ComboBox { public ComboboxEx() 阅读全文
posted @ 2021-08-12 14:36 ꧁执笔小白꧂ 阅读(603) 评论(0) 推荐(0)
摘要: #region Form圆角 public void SetWindowRegion() { System.Drawing.Drawing2D.GraphicsPath FormPath; FormPath = new System.Drawing.Drawing2D.GraphicsPath(); 阅读全文
posted @ 2021-08-11 11:08 ꧁执笔小白꧂ 阅读(1012) 评论(0) 推荐(0)
摘要: 一,各浏览器内核: (1)Trident:IE 6、7、8,傲游(双核心)、 QQ浏览器(双核心)、360浏览器(双核心); (2)EdgeHTML:Chakra,Edge和其他UWP浏览器使用; (3)webkit:Mac-Safari;谷歌浏览器(Blink基于webkit)、傲游浏览器3.0、 阅读全文
posted @ 2021-08-09 12:06 ꧁执笔小白꧂ 阅读(748) 评论(2) 推荐(0)
摘要: // 关闭当前layer.open()打开的弹窗(常用在同一个方法里): var index = layer.open({});//先赋值这个弹窗 layer.closeAll(index); // 关闭除父级外的子页面(window.name我不会找唉!) var index = parent.l 阅读全文
posted @ 2021-07-27 17:24 ꧁执笔小白꧂ 阅读(4656) 评论(0) 推荐(0)
摘要: $("#getExcleBtn").click(function () { layer.msg("功能暂未开发!", { time: 2000 //2s后自动关闭 }); }) 阅读全文
posted @ 2021-07-23 16:08 ꧁执笔小白꧂ 阅读(79) 评论(0) 推荐(0)
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 36 下一页