[置顶] 颜色关键字

摘要: 阅读全文

posted @ 2019-08-29 18:13 九涅 阅读(133) 评论(0) 推荐(0) 编辑

2023年12月19日

原生实现拖动

摘要: <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>原生JS实现拖拽位置预览</title> <style> .box {position 阅读全文

posted @ 2023-12-19 16:39 九涅 阅读(2) 评论(0) 推荐(0) 编辑

三级联动

摘要: <script language="javascript"> var selItm = new Array(4), selItemr = new Array(4),i,j; for ( i=0; i<4; i++){ selItm[i] = new Array(); selItemr[i] = ne 阅读全文

posted @ 2023-12-19 16:20 九涅 阅读(2) 评论(0) 推荐(0) 编辑

2023年5月11日

js过滤粘贴内容

摘要: <html> <head> <title>Html Editor Filter</title> <style type="text/css"> .editor { border:1px solid #333333; } </style> </head> <body> <iframe src="ifr 阅读全文

posted @ 2023-05-11 16:51 九涅 阅读(77) 评论(0) 推荐(0) 编辑

2022年12月16日

给 “文字” 同时设置 渐变、浮雕效果、阴影

摘要: .titleText{ border:10px solid green; display: flex; height: 100%; justify-content: center; h1.informationPlatform{ border:1px solid red; font-family:M 阅读全文

posted @ 2022-12-16 08:52 九涅 阅读(48) 评论(0) 推荐(0) 编辑

2022年8月5日

Ai与Ae无缝衔接

摘要: 参考: AE脚本-AI与AE实时交互MG动画制作神器 Overlord v1.22 + 中文字幕视频教程 Overlord插件,让Ai与Ae无缝衔接! 插件: 1.百度网盘 - AE 文件夹 2.印象笔记 - 素材库 - 我的素材 阅读全文

posted @ 2022-08-05 11:32 九涅 阅读(152) 评论(0) 推荐(0) 编辑

2022年8月4日

Extract 抽出

摘要: “PS抽出滤镜” 已被 “选择工具”中的“调整边缘/删除背景”选项所代替。如果想使用抽出滤镜,则可以按如下方法进行操作: 首先,我们使用区域选择工具,将图片进行大概的选取,如图所示,选区工具可使用“矩形工具”或“套索工具”均可; 点击“属性面板/删除背景”右侧的“调整边缘”按钮,即可打开类似抽出滤镜 阅读全文

posted @ 2022-08-04 16:02 九涅 阅读(42) 评论(0) 推荐(0) 编辑

Extract Assets(生成器)切图

摘要: Extract Assets 是 Photoshop CC 2014 版本新增的一个特性,主要用来快速导出适用于 Web 和屏幕设计的资源,可以用它导出 JPG、PNG、GIF,甚至是 SVG 图像资源。 特点: 将 PSD 中的 “图层” 或 “图层组” 导出为 一个或多个的图像资源; 导出 JP 阅读全文

posted @ 2022-08-04 15:51 九涅 阅读(52) 评论(0) 推荐(0) 编辑

2022年3月23日

收缩按钮

摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8" > <style> *,*::before,*::after{box-sizing: border-box;-webkit-touch-callout: none; -webkit-user-se 阅读全文

posted @ 2022-03-23 13:55 九涅 阅读(37) 评论(0) 推荐(0) 编辑

2022年2月15日

打印 HTML 中的内容

摘要: 针对 HTML页面 中部分标签进行打印 <link type="text/css" rel="stylesheet" href="css/custom.css" media="screen" /> <!--所有外部引用的CSS 都要加上 media="screen" 特性,才能正常引用--><lin 阅读全文

posted @ 2022-02-15 16:18 九涅 阅读(418) 评论(0) 推荐(0) 编辑

布局:table表格布局

摘要: .table { display:table; width: 80%; border-collapse: collapse; } .table-tr {display: table-row; height: 30px;} .table-th {display: table-cell;font-wei 阅读全文

posted @ 2022-02-15 15:29 九涅 阅读(119) 评论(0) 推荐(0) 编辑

2021年8月9日

选择框脚本_移动/重排选项 P435

摘要: <!DOCTYPE html> <html> <head> <title>选择框,移动和重排选项</title> <script type="text/javascript" src="js/EventUtil.js"></script> </head> <body> <form> <select 阅读全文

posted @ 2021-08-09 15:53 九涅 阅读(36) 评论(0) 推荐(0) 编辑

2021年8月2日

文字等宽

摘要: 方法一:CSS3 p{ display: inline-block; width:10rem; height:5rem; text-align:justify; text-justify: distribute-all-lines; text-align-last: justify; border: 阅读全文

posted @ 2021-08-02 11:38 九涅 阅读(94) 评论(0) 推荐(0) 编辑

2020年9月11日

background 背景

摘要: 一、纯色属性 二、风骚渐变属性 样例01 理论01 盒模型_视错觉_导直角_导凹角 二、URL( )属性 设置 CSS Sprite 精灵图 阅读全文

posted @ 2020-09-11 09:34 九涅 阅读(92) 评论(0) 推荐(0) 编辑

2020年8月23日

表单序列化 P436

摘要: <!DOCTYPE html> <html> <head> <title>表单序列化</title> <script type="text/javascript" src="EventUtil.js"></script> </head> <body> <form method="post" acti 阅读全文

posted @ 2020-08-23 16:41 九涅 阅读(120) 评论(0) 推荐(0) 编辑

2020年8月2日

选择框脚本_添加/删除选项 P434

摘要: <!DOCTYPE html> <html> <head> <title>Selectbox Example</title> <script type="text/javascript" src="EventUtil.js"></script> </head> <body> <form method 阅读全文

posted @ 2020-08-02 14:47 九涅 阅读(178) 评论(0) 推荐(0) 编辑

选择框脚本_用事件选中选项,获取选中项信息 P432

摘要: 1.单项选择框——用事件选择选项并获取选中项信息 <!DOCTYPE html> <html> <head> <title>单项选择框——用事件选择选项并获取选中项信息</title> <script type="text/javascript" src="EventUtil.js"></scrip 阅读全文

posted @ 2020-08-02 10:11 九涅 阅读(253) 评论(0) 推荐(0) 编辑

2020年7月26日

文本框组脚本_自动切换焦点“例如加区号和分机号的电话号码文本框组” P426

摘要: 注:此例只适用于文本框组,没有考虑隐藏字段<input type="hidden" />。 <!DOCTYPE html> <html> <head> <title>Textbox Tab Forward Example</title> <script type="text/javascript" 阅读全文

posted @ 2020-07-26 15:24 九涅 阅读(169) 评论(0) 推荐(0) 编辑

文本框脚本_粘贴“仅由数字组成的字符串”P425

摘要: <!DOCTYPE html> <html> <head> <title>文本框剪贴板示例</title> <script type="text/javascript" src="EventUtil.js"></script> </head> <body> <p>文本框——只能在粘贴“仅由数字组成的 阅读全文

posted @ 2020-07-26 15:06 九涅 阅读(128) 评论(0) 推荐(0) 编辑

2020年7月23日

文本框脚本_屏蔽_非数字字符 P423

摘要: EventUtil.addHandler(textbox, "keypress", function(event){ event = EventUtil.getEvent(event); var target = EventUtil.getTarget(event); var charCode = 阅读全文

posted @ 2020-07-23 08:19 九涅 阅读(174) 评论(0) 推荐(0) 编辑

2020年7月20日

文本框脚本_取得文本_跨浏览器_P421

摘要: 一、取得_用户在文本框中选择的文本 <!DOCTYPE html> <html> <head> <title>文本框脚本_取得选择的文本</title> <script type="text/javascript" src="EventUtil.js"></script> </head> <body 阅读全文

posted @ 2020-07-20 15:47 九涅 阅读(170) 评论(0) 推荐(0) 编辑

导航