上一页 1 2 3 4 5 6 ··· 13 下一页
摘要: String Search Methods String indexOf() String lastIndexOf() String search() See Also: Basic String Methods String Templates String match() String matc 阅读全文
posted @ 2025-02-05 11:53 zhongta 阅读(15) 评论(0) 推荐(0)
摘要: 吸取工具 1.吸管工具 用于吸取颜色。 2.颜色取样器 点击会出现信息,可以知道具体颜色情况。 最多10个点,可以依次显示。 删除办法,右键选择删除。 或最上方全部删除。 3.标尺工具 (1)测量 (2)最上方拉直图层 4.注释工具 5.计数工具 最上方标记大小,标签大小。 上左方有组,可以分组调整 阅读全文
posted @ 2025-02-04 15:39 zhongta 阅读(36) 评论(0) 推荐(0)
摘要: 6.1接口 例,排序算法需要类实现比较接口。 public interface Comparable{ int compareTo(Object other); } 泛型 public interface Comparable<T> { int compareTo(T other);//parame 阅读全文
posted @ 2025-02-04 14:55 zhongta 阅读(17) 评论(0) 推荐(0)
摘要: 1.number类型始终是64位的浮点数。 2.整数最高有15位 3.类型转换 let x = "100"; let y = "10"; let z = x / y; 4.NaN let x = 100 / "Apple";//NaN NaN is a number: typeof NaN retu 阅读全文
posted @ 2025-02-04 11:46 zhongta 阅读(14) 评论(0) 推荐(0)
摘要: 13.1.1 Timer let updateIntervalId=setInterval(checkForUpdates,60000); function stopCheckingForUpdates(){ clearInterval(updateIntervalId); } 事件 let oka 阅读全文
posted @ 2025-02-01 14:55 zhongta 阅读(13) 评论(0) 推荐(0)
摘要: 1.选区选项 加选 shift 减选 alt 交叉选区 shift+alt键 羽化:先调整羽化再选选区ctrl+j 样式:固定比例,固定大小。 2.矩形选择工具 按住shift 正方形选区 按住alt键 从中心开始向四周扩散选区 3.椭圆选择工具 按住shift 正圆选区 按住空格键 4.套索工具组 阅读全文
posted @ 2025-01-29 15:33 zhongta 阅读(68) 评论(0) 推荐(0)
摘要: 1.数组,TypedArray strings Set Map 对象时可迭代的。 let sum=0; for(let i of [1,2,3]){ sum+=i; } 2 使用...操作符 let chars=[..."abcd"];//chars=["a","b","c","d"]; let d 阅读全文
posted @ 2025-01-28 14:33 zhongta 阅读(13) 评论(0) 推荐(0)
摘要: 1.text-shadow 两个参数,水平阴影和垂直阴影 h1 { text-shadow: 2px 2px; } 第三个参数,颜色。 h1 { text-shadow: 2px 2px red; } 第四个参数 模糊效果颜色,第三个参数是模糊的像素效果,第四个是颜色。 h1 { text-shad 阅读全文
posted @ 2025-01-28 10:52 zhongta 阅读(31) 评论(0) 推荐(0)
摘要: 1.The CSS object-position property is used to specify how an or should be positioned within its container. https://www.w3schools.com/css/css3_object-p 阅读全文
posted @ 2025-01-24 12:20 zhongta 阅读(14) 评论(0) 推荐(0)
摘要: https://www.w3schools.com/css/css3_images.asp 1.圆角图片 2.相框样式 3.响应式图片。图片会随窗口变动。 4.用样式覆盖图片 图片居中 https://www.w3schools.com/css/css3_image_center.asp 图片过滤器 阅读全文
posted @ 2025-01-23 11:29 zhongta 阅读(11) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 13 下一页