如何在标题栏title前添加网站logo? 第一种方法:据说在网站根目录下放着我们的ico型logo,命名为favicon.ico,浏览器会自动去找到并显示。试了试,在firefox23和ie8下都没有成功。 第二种方法:添加代码,如下: 1 <link rel="shortcut icon" hr ...
分类:
Web程序 时间:
2016-08-01 17:27:22
阅读次数:
175
创建lnk快捷方式的程序有很多,但创建url快捷方式的程序却鲜有,于是本人决定自己做一个能象shortcut.exe一样能轻松创建快捷方式的urlshortcut程序,此程序是cmd脚本,打包成exe费事且运行效率降低,直接采用cmd形式好了,高手喜欢的还可以进一步修改,但最好注明源代码出处。..
分类:
Web程序 时间:
2016-07-31 22:24:19
阅读次数:
164
对于以往知识点的查漏补缺 1. 网站的快捷图标 如何制作网站快捷图标 www.bitbug.net <link rel="shortcut icon" href="favicon.ico" /> 2. FW快捷键 I 滴管工具 吸取颜色 K 切片工具 量取元素的宽度 Z 放大镜工具 V 移动 A 指 ...
分类:
其他好文 时间:
2016-07-22 22:57:40
阅读次数:
162
在head标签中加入如下代码 本地: 1 <link rel="shortcut icon" href="favicon.ico" /> <link rel="shortcut icon" href="favicon.ico" /> 服务器: 1 <link rel="shortcut icon" ...
分类:
其他好文 时间:
2016-07-01 21:20:59
阅读次数:
906
地址(徐医生的GitHub):https://github.com/xuyisheng/ShortcutHelper常用API /** * 添加快捷方式 * * @param context context * @param actionIntent 要启动的Intent * @param name... ...
分类:
其他好文 时间:
2016-06-28 12:21:54
阅读次数:
361
1.打开组策略管理,创建一个新的GPO并连接到对应的OU或域。2.编辑GPO,定位到UserConfiguration>Preferences>WindowsSettings>Shortcuts,右击Shortcuts>New>Shortcut:3.请参照下面的信息设置快捷方式:Action:UpdateName:InternetExplorerTargettype:FileSyste..
分类:
其他好文 时间:
2016-06-17 17:44:26
阅读次数:
367
显示网页左上角标志图标 <link rel="shortcut icon"type="image/x-icon"href="images/favicon.ico" /> 或者 <link rel="shortcut icon" href="images/114dyy.png" /> 貌似图片格式不是 ...
分类:
Web程序 时间:
2016-06-08 12:34:16
阅读次数:
238
Shortcut Notations 简洁写法
One of the things I love most about JavaScript now is shortcut notations to generate objects and arrays. So, in the past when we wanted to create an object, we wrote:
在过去...
分类:
编程语言 时间:
2016-05-17 16:11:08
阅读次数:
286
1.favicon.ico制作:favicon.ico可以ps制作;“shortcut icon”中间有一个空格 <head> <link rel="shortcut icon" href="favicon.ico"> </head> 2.正则表达式验证邮箱(可自动删除前后的空格) [\s*\w+( ...
分类:
其他好文 时间:
2016-05-13 09:49:16
阅读次数:
127
String ADD_SHORTCUT_ACTION 动作:
在系统中添加一个快捷方式。
"android.intent.action.ADD_SHORTCUT"
String ALL_APPS_ACTION 动作:
列举所有可用的应用。
"android.intent.action.ALL_APPS"
String ALTERNATIVE_CATEGORY 类别:
说...
分类:
其他好文 时间:
2016-05-13 04:26:55
阅读次数:
194