css手型 27 May 2010 14:38 Thursday by 小屋 浏览(3093)

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html >
<head>
<title >cursor</title >
</head>
<body>
<p style=cursor:hand>手形</p>
<p style=cursor:move>移动标志</p>
<p style=cursor:wait>等待状态 </p>
<p style=cursor:crosshair>定位指示 </p>
<p style=cursor:help>寻求帮助</p>
</body>
</html >

 

IE与Firefox中兼容html 中巧用CSS改变鼠标 为手形

<div style="cursor: pointer" mce_style="cursor: pointer"> 说明文字 内容 </div>

阅读全文>>

开源 PHP 验证码 Securimage 带语音识别 05 May 2010 22:11 Wednesday by小屋 浏览(1868)

 

官方网站http://www.phpcaptcha.org/
下载地址http://www.phpcaptcha.org/download/
原文地址http://www.21andy.com/blog/20100417/1886.html

验证码图 片:

<img id="captcha" src="/securimage/securimage_show.php" alt="CAPTCHA Image"  />

验证码文 本框:

<input type="text" name="captcha_code" size="10" maxlength="6" />

看不清验证码

<a href="#" rel="nofollow" target="_blank">Reload Image</a>

后端PHP验 证:

<?php
session_start();
 
include_once $_SERVER['DOCUMENT_ROOT'] . '/securimage/securimage.php';
$securimage = new Securimage();
 
if ($securimage->check($_POST['captcha_cod

阅读全文>>

纯CSS下拉菜单精简代码 09 April 2010 13:06 Friday by小屋 浏览(1484)

 

<style type="text/css">

ul, li{list-style:none; padding:0; margin:0; line-height:160%}

a{font:normal 14px "宋体"; text-decoration:none}

li.mainnav{margin:10px; border:1px solid #039; float:left}

.mainnav ul{display:none}

.mainnav:hover ul, .mainnav:hover li{display:block}

.mainnav:hover{z-index:2; background:#fff}

</style>

<div style="position:relative; width:600px; height:40px">

<div style="position:absolu

阅读全文>>