因此,当您将鼠标悬停在图像上时,我正在尝试向上移动文本,但似乎无法使其正常工作。我尝试使用:hover,然后使用padding-bottom将其向上移动,但是没有用。因此,当您将鼠标悬停在图像上时,我基本上希望文本“ Nature”或“ Bengal Tiger”向上移动。这是一张图片,说明了我想要实现的目标。



这是代码

http://jsfiddle.net/Qf4Ka/10/

的HTML

<section id="top-container" class="top-column" style="width:1050px; height:400px; ">

<div class="image" style="float:left;"><img src="http://www.hdwallpapersinn.com/wp-content/uploads/2012/09/HD-Wallpaper-1920x1080.jpg" border="0"; width="263"; height="200" style="display: block; border-top: 1px solid #dddddd; border-bottom: 1px solid #dddddd; border-right: 1px solid #dddddd;">
<h4 style="font-size:30px; top: 90px; ">Nature</h4>
</div>

<div class="image" style="float:left;"><img src="http://www.hdwallpapersart.com/wp-content/uploads/2013/04/tiger_wallpapers_hd_Bengal_Tiger_hd_wallpaper1.jpg" border="0"; width="262"; height="200" style="display: block; border-top: 1px solid #dddddd; border-bottom: 1px solid #dddddd; ">
<h4 style="font-size:30px; top: 90px;">Bengal Tiger</h4>
</div>

</section>


的CSS

.image {
   position: relative;

}

h4 {
   position: absolute;
   width: 100%;
   color: #fff;
   float: left;
   position: absolute;
   font-size: 40px;
   font-family: "Oswald";
   text-align: center;
   max-height:auto;
   z-index:20;
   text-shadow:1px 1px 2px #000;
   -moz-text-shadow:1px 1px 2px #000;
   -ms-text-shadow:1px 1px 2px #000;
   -o-text-shadow:1px 1px 2px #000;
   -webkit-text-shadow:1px 1px 2px #000;

}

.image {
   position: relative;

}

.image:before{
content:'';
box-shadow:0 0 50px 4px #000 inset;
-moz-box-shadow:0 0 50px 4px #000 inset;
-webkit-box-shadow:0 0 50px 6px #000 inset;
float:left;
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:20;
cursor: pointer;

}

.image:hover:before {
    box-shadow:0 0 100px 30px #000 inset;
    -moz-box-shadow:0 0 100px 30px #000 inset;
    -webkit-box-shadow:0 0 100px 30px #000 inset;
    transition: all 1s;
    -webkit-transition: all 1s;
}

最佳答案

这样的事情怎么样:

.image:hover h4 {
    margin-top: -50px;
}


FIDDLE

关于javascript - 在悬停上移动文本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19075931/

10-09 18:13