CSS动画移动不需要的对象

时间:2017-09-15 21:17:14

标签: html css animation

当悬停图像时,我在图像上使用悬停动画。 然而,这也会移动下面的文本,我不希望这样。

如何制作它以忽略文字?



table

<table class="table table-sm table-hover table-striped">
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:2)

喜欢这个吗?

aside div {
  background: url('http://www.law.kuleuven.be/canon_law/Pictures/staff/pasfoto.jpg/download');
  overflow: hidden;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: 0.2s;
  margin: 0 auto;
  position: relative;
  top: -50px;
}
aside> section{
position:relative;
}
aside> section> div{
position:absolute;
left:0px;
right:0px;
margin:auto;
top:0px;
}
aside >section> div:hover {
  padding: 0;
  width: 110px;
  height: 110px;
}

aside > section {
  text-align: center;
  width: 300px;
  height: 500px;
  background: #fff;
}
section > h1{
  padding-top:125px;
}
<section>
  <aside>
    <section>
      <div>
      </div>
      <h1>John Doe</h1>
      <p>placeholder <br /> more placeholder.</p>
    </section>
  </aside>
</section>