🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
方法:刚开始隐藏内容,鼠标放上去改变定位的bottom的值,主要用了定位和隐藏 ``` <div class="box"> <span class="bottom"></span> </div> <style> .box{ width: 200px; height: 200px; border: 1px solid #ccc; overflow: hidden;//隐藏下面的内容 position: relative; margin:50px auto; top:0; } .box .bottom{ position: absolute; left: 0; bottom: -85px;//将内容置于下方 width: 100%; background-color: orange; height: 60px; transition: all .5s; } .box:hover { top: -5px; box-shadow: 0 0 15px #AAA; } .box:hover .bottom{ bottom: 0px;//鼠标放上去,显示下面的内容 } </style> ``` **刚开始:隐藏** ![](https://img.kancloud.cn/8d/7e/8d7e78d9c61b22296ff5ae549ae23441_430x377.png) **鼠标放上去:显示** ![](https://img.kancloud.cn/e3/5e/e35ef53d341fa157fb52be92a0e9ddab_566x392.png)