从1 div缓解显示另一个

时间:2015-09-10 21:14:07

标签: html css css3

我在CSS中使用ease功能时遇到了麻烦。 我有一个图像,当你将鼠标悬停在它上面时,我希望它能够变得更大,并显示另一个div。

<div class="info1">
      <img src="info.png">
      <div class="infoh">
        <p>Information to be shown when hovered over</p>
      </div>
    </div>

CSS

.infoh {
 width: 180px;
 height: 180px;
 display: none;
 position: absolute;
 background-color: #ffb534;
 padding: 30px;
 border-radius: 100%;
-moz-border-radius: 100%;
-webkit-border-radius: 100%;
 border: 4px solid #ffffff;
 z-index: 1;
 margin-left: -80px;
 margin-top: -33px;
 }

.infoh p {
font-size: inherit;
text-align: center;
}

.info1:hover .infoh {
 display: block;
}

.info1 {
 position: absolute;
 display: inline-block;
 width: 32px;
 height: 32px;
 margin-left: 19.5%;
 margin-top: -1.5%
 }

我尝试将它放在图像上但是没有用,然后我尝试了每个div,并且无法让它变得轻松。它只是弹出。

.info1 img {
 -webkit-transition: width 2s; /* Safari */
 transition: width 2s;
 transition-timing-function: ease;
-webkit-transition-timing-function: ease;
}

0 个答案:

没有答案