上一页 1 2 3 4 5 6 7 ··· 13 下一页
摘要: A tooltip is often used to specify extra information about something when the user moves the mouse pointer over an element: <!DOCTYPE html> <html> <st 阅读全文
posted @ 2025-01-23 10:56 zhongta 阅读(23) 评论(0) 推荐(0)
摘要: How to Use CSS Transitions? To create a transition effect, you must specify two things: the CSS property you want to add an effect to the duration of 阅读全文
posted @ 2025-01-22 10:28 zhongta 阅读(19) 评论(0) 推荐(0)
摘要: 1.创建选区 使用矩形,椭圆,套索工具可以创建选区。 然后菜单栏上方可以加选,减选,交叉选区 shift键,加选 alt键,减选 shift+alt 交叉选区 ctrl+A全选 ctrl+图层 选取存在像素的区域 ctrl+shift+i 反选区域 2.修改 在菜单栏 选择-修改-边界 可以设置边界 阅读全文
posted @ 2025-01-21 14:01 zhongta 阅读(419) 评论(0) 推荐(0)
摘要: web存储 https://www.w3schools.com/html/html5_webstorage.asp webworker https://www.w3schools.com/html/html5_webworkers.asp 阅读全文
posted @ 2025-01-21 11:20 zhongta 阅读(10) 评论(0) 推荐(0)
摘要: 1.位图模式 点阵图像或栅格图像,是由称作像素的单个点构成的。 2.位图 只使用黑白两种颜色表示图像。 3.去色 图像->调整->阈值 可以去色 明度B 在50%以上为白色。在50%以下为黑色。 4.灰度模式 使用黑白灰三种颜色表示图像 5.图像-》调整去色 和灰度模式效果相近。去色后可以添加其他颜 阅读全文
posted @ 2025-01-20 11:38 zhongta 阅读(63) 评论(0) 推荐(0)
摘要: 子类引用可以赋值给父类引用,父类引用需要类型转换才能赋值给子类引用。 1从子类强制类型转换为父类时需要使用instanceof if(staff[i] instanceof Manager){ boss=(Manager)staff[i]; ... } 5.2 Object类 Object 类是所有 阅读全文
posted @ 2025-01-15 15:51 zhongta 阅读(8) 评论(0) 推荐(0)
摘要: 1.溢出 <!DOCTYPE html> <html> <head> <style> p.test1 { white-space: nowrap; width: 200px; border: 1px solid #000000; overflow: hidden; text-overflow: cl 阅读全文
posted @ 2025-01-15 13:37 zhongta 阅读(14) 评论(0) 推荐(0)
摘要: 1.打印机 @media print{ background:transparent; } 2.屏幕 @media screen{ h1{ font-family:""; } } @media (width:800px){ h1{ color:blue; } } //检测视口宽度小于等于700px, 阅读全文
posted @ 2025-01-14 14:37 zhongta 阅读(12) 评论(0) 推荐(0)
摘要: Automatic Numbering With Counters CSS counters are like "variables". The variable values can be incremented by CSS rules (which will track how many ti 阅读全文
posted @ 2025-01-10 14:37 zhongta 阅读(14) 评论(0) 推荐(0)
摘要: 1.set class set是值的集合,set是无序的,且不能重复。一个值可以是或不是集合的成员。 let s=new Set();//空集 let t=new Set([1,s]);//有两个元素的集合。 let t=new Set(s);//新集合,元素来自于s let unique=new 阅读全文
posted @ 2025-01-08 13:53 zhongta 阅读(32) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 13 下一页