我有一个图像,上面有一个信息框,下面是css。
正常情况是将鼠标悬停在图像上时会出现这种情况,但是,我希望相反。我想让盒子在悬停图像时向外/向下滑动约-50px。有人得到了这个小费吗?
.imgTitleInfoTop {
-moz-box-sizing: border-box;
bottom: 0;
font-size: 24px;
font-weight: 500;
height: 60px;
line-height: 22px;
width: 370px;
}
答案 0 :(得分:1)
据我所知,你希望在悬停图片时隐藏.imgTitleInfoTop元素,所以代码应如下所示:
<script type="text/javascript">
$('.yourImage').hover(function() {
$(.imgTitleInfoTop).animate({
height: 0
}, 300);
}, function() {
$(.imgTitleInfoTop).animate({
height: '60px'
}, 300);
});
</script>
(300是以毫秒为单位的时间,此操作需要多少时间,因此您可以使其更快或更慢)
答案 1 :(得分:0)
您是否在寻找类似的东西(使用Jquery)?
<script type="text/javascript">
$('.imgTitleInfoTop').hover(function() {
$(this).animate({
height: 0
}, 300);
}, function() {
$(this).animate({
height: '60px'
}, 300);
});
</script>