<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
.perwrapper {
width: 50px;height: 50px;background: red;
-webkit-transition: all .5s;
transition: all .5s;
-moz-transition: all .5s;
box-shadow: 0 2px 2px 0 #eee;
border: none;
}
.perwrapper:hover {
box-shadow: 0 2px 10px #888;
-webkit-transform: translate(0px, -2px);
-moz-transform: translate(0px, -2px);
transform: translate(0px, -2px);
}
</style>
</head>
<body>
<div class="perwrapper">wdw</div>
</body>
</html>
不知道是不是这意思? |