搜索找到 1829 个匹配

Mia2014
周五 2月 28, 2014 11:13 pm
版面: IT相关
主题: 文字透明,显示背景(附例子代码)
回复总数: 0
阅读次数: 18040

文字透明,显示背景(附例子代码)

实现效果: 文字透明,显示背景 代码: opacity: 0.1; /*Chrome、Safari、Firefox、Opera */ filter: progid:DXImageTransform.Microsoft.Alpha(opacity=1); /* IE6/IE7/8 */ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=1)"; /* IE8 */ 代码解释: 第一行是在其他浏览器中使用 Opacity 属性,IE没有opacity属性; 第二行是 IE6/7/8 中使用滤镜属性设置透明度; 在 IE 滤镜中...
Mia2014
周五 2月 28, 2014 6:00 pm
版面: IT相关
主题: Drupal 7: Hook_menu 和 form的用法
回复总数: 0
阅读次数: 18104

Drupal 7: Hook_menu 和 form的用法

先附例子代码: function mymodule_menu() { $items = array(); $items['node/1/%/%'] = array( 'title' => t('Search Result'), 'description' => t('Search Result'), 'page callback' => 'drupal_get_form', 'page arguments' => array('test_form',2,3), 'access callback' => TRUE, 'access arguments' => array('access cont...
Mia2014
周五 2月 21, 2014 1:58 pm
版面: IT相关
主题: Warning Unresponsive script- What it means and how to fix it
回复总数: 0
阅读次数: 19334

Warning Unresponsive script- What it means and how to fix it

如果出现上述错误,解决方法:
据说Google Chrome没有这个问题,所以可以下载使用Google Chrome。

其他的浏览器:
Firefox:
http://support.mozilla.org/en-US/kb/war ... run-longer
IE Explorer
http://support.microsoft.com/kb/175500# ... selfAlways
Mia2014
周五 2月 21, 2014 11:24 am
版面: IT相关
主题: 如何去掉Windows启动项
回复总数: 0
阅读次数: 17667

如何去掉Windows启动项

每天启动机器开机自启动了很多东西。

这里收集了几个清楚自启动项的几个方法:
1)在启动菜单“运行”里输入“msconfig”,在“启动”或者"Startup"里禁用不要启动的项;
2)在启动菜单“运行”里输入“regedit”,打开注册表,查找“HKEY_LOCAL_MACHINE”和“HKEY_CURRENT_USER”;注册表改错了计算机系统就乱了,所以有把握了再改动;
3)右键“计算机”,在弹出菜单选“属性(Properties)”,查看里面的启动项,这个方法好像在Windows 7里好用。
Mia2014
周五 2月 21, 2014 11:15 am
版面: IT相关
主题: <DIV>加border(边框)(附代码)
回复总数: 0
阅读次数: 17501

<DIV>加border(边框)(附代码)

例子代码:
<div style="border:1px solid #F00; width:431px; height:60px;">Here is Div</div>