Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<title>鼠标移上滑出图片介绍</title>
<script type="text/javascript" src="//apps.bdimg.com/libs/jquery/1.11.3/jquery.min.js"></script>
<div style='position:relative;height:200px;width:200px;background:orange; overflow:hidden' id="box" >
<div style="position:absolute;top:0;height:200px;" ><img style="margin:0 auto;" src="//ku.shouce.ren/files/images/201601/56a34a1f8e441.jpg" /></div>
<div style="position:absolute;top:200px;width:200px;height:75px;background:lightgreen;" id="up" >
<center><br>清晨的露珠</center>
</div>
<script>
$(document).ready(function(){
$("#box").mouseover(function(){
$("#up").animate({top:125});
});
$("#up").mouseout(function(){
$(this).animate({top:200});
</script>
CSS代码...
JS代码...
xxxxxxxxxx