<html>
<head>
<style>
*{margin:0;padding:0}
#one{background-color:#ddd;width:480px;height:270px;}
#two{background: #000 none repeat scroll 0 0;
height: 270px;
left: 0;
opacity: 0.8;
position: absolute;
top: 0;
width: 480px;
}
#three{color:#fff;position: absolute;top:120;left:220;}
/*#one:hover #two, #one:hover #three{display:block;}*/
</style>
<script>
window.onload=function(){
document.getElementById("two").style.visibility = "hidden";
document.getElementById("three").style.visibility = "hidden";
document.getElementById("one").onmouseenter = function(){
document.getElementById("two").style.visibility = "visible";
document.getElementById("three").style.visibility = "visible";
}
document.getElementById("one").onmouseleave = function(){
document.getElementById("two").style.visibility = "hidden";
document.getElementById("three").style.visibility = "hidden";
}
}
</script>
</head>
<body>
<div id="one"></div>
<div id="two"></div>
<div id="three">更多</div>
</body>
</html>
<head>
<style>
*{margin:0;padding:0}
#one{background-color:#ddd;width:480px;height:270px;}
#two{background: #000 none repeat scroll 0 0;
height: 270px;
left: 0;
opacity: 0.8;
position: absolute;
top: 0;
width: 480px;
}
#three{color:#fff;position: absolute;top:120;left:220;}
/*#one:hover #two, #one:hover #three{display:block;}*/
</style>
<script>
window.onload=function(){
document.getElementById("two").style.visibility = "hidden";
document.getElementById("three").style.visibility = "hidden";
document.getElementById("one").onmouseenter = function(){
document.getElementById("two").style.visibility = "visible";
document.getElementById("three").style.visibility = "visible";
}
document.getElementById("one").onmouseleave = function(){
document.getElementById("two").style.visibility = "hidden";
document.getElementById("three").style.visibility = "hidden";
}
}
</script>
</head>
<body>
<div id="one"></div>
<div id="two"></div>
<div id="three">更多</div>
</body>
</html>