鼠标放上去盒子向上滑动
Posted Sunny_Lee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了鼠标放上去盒子向上滑动相关的知识,希望对你有一定的参考价值。
html:
<div class="box clearfix"> <div class="box1"></div> <div class="box2"></div> </div>
css:
.box{height: 500px;width: 500px;background-color: pink;} .box1,.box2{width: 100px;height: 100px;background:red;margin: 30px 30px;float: left;transition: all 0.8s ease;-moz-transition: all 0.8s ease;-webkit-transition: all 0.8s ease;-o-transition: all 0.8s ease;} .box1:hover{margin-top: -10px;} .box2:hover{margin-top: -10px;}
以上是关于鼠标放上去盒子向上滑动的主要内容,如果未能解决你的问题,请参考以下文章