【CSS样式】鼠标经过若隐若现效果
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
#navigation{
width:100px;
hieght:100px;
text-align:center;
font-size:24px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-webkit-transition: all 0.4s ease-out;
-moz-transition: all 0.4s ease-out;
-o-transition: all 0.4s ease-out;
transition: all 0.4s ease-out;
padding: 18px 20px;
margin: 0;
font-size: 12px;
font-weight: bold;
text-transform: uppercase;
background:#69C;
color:#FFF;
}
#navigation:hover{
background:#930;
}
</style>
</head>
<body>
<div id="navigation">隐藏ytutyuty</div>
</body>
</html>