首页htmlbannerPage Widget - 如何滑起横幅背景

Page Widget - 如何滑起横幅背景

我们想知道如何滑起横幅背景。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
div {
  width: 200px;
  height: 100px;
  overflow: hidden;
  border-radius: 5px;
  background: #eee;
}

a {
  position: relative;
  width: 200px;
  height: 200px;
  line-height: 100px;
  text-align: center;
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover {
  margin-top: -100px;
}
</style>
</head>
<body>
  <div>
    <a href="">link <span> <img
        src="http://placehold.itom/400x200" />
    </span>
    </a>
  </div>
</body>
</html>