Bootstrap btn-primary出现在悬停状态

时间:2016-07-17 19:47:15

标签: html css twitter-bootstrap css3

我认为这应该相对容易,但我无法让它发挥作用。我的btn使用display flex很好地集中在我的图像上。我希望当用户将鼠标悬停在图像上时显示btn,当他们将光标移离图像时它会消失。我还希望添加一种微妙的轻松进出效果,以便顺利过渡。任何帮助深表感谢。这是我的CSS和HTML。

HTML

<div class="row">
    <div class="col-md-4">
      <div class="imgAbout">
        <img src="http://placehold.it/580x410" class="img-responsive" alt="Neil Elmouchi Bio">

        <div class="center-container">
          <a class="btn btn-sm btn-primary" href="bios/teamBioNeil.html">View More</a>
        </div>
      </div>

      <h1>Name</h1>
      <h3>Chairman &amp; CEO<br> 
      Senior Wealth Advisor</h3>
    </div> <!-- end col-md-4 -->
</div>

CSS

#about img {
  margin: 0 auto;
}

.imgAbout {
  position: relative;
}

.imgAbout img {
  display: block;
  height: auto;
}

.center-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

2 个答案:

答案 0 :(得分:1)

添加到CSS下一行:

.imgAbout .center-container .btn {
  visibility: hidden; 
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear;
}
.imgAbout:hover > .center-container .btn { 
  visibility:visible;
  opacity: 1;
}

答案 1 :(得分:0)

How to make twitter bootstrap menu dropdown on hover rather than click

希望这会对你有帮助。

虽然你可以使用jQuery(http://api.jquery.com/fadein/)中的fadeIn选项,但我不知道在使用bootstrap时如何进行微妙的轻松进入。