好的,我们走了,我有这个小提琴:
它没有按预期工作,所以我将描述我需要什么以及问题是什么。目标是悬停盒子时的滑动描述。
这就是我想要的, 强调一切不起作用 :
你能帮助我吗?
答案 0 :(得分:1)
试试这个,不确定,但我认为这是你的答案。
我正在放置小提琴链接click here for demo
和JS代码:
jQuery(function() {
$('.box').hover(function() {
var _tst = this;
jQuery(this).find(".text").animate({
"height": jQuery(_tst).find(".text").height() + jQuery(_tst).find(".desc").height()
}, {
duration: 600,
queue: false
});
jQuery(this).find(".img").animate({
"top": -jQuery(_tst).find(".desc").height()
}, {
duration: 600,
queue: false
});
}, function() {
jQuery(this).find(".text").animate({
"height": "30px"
}, {
duration: 600,
queue: false
});
jQuery(this).find(".img").animate({
"top": 0
}, {
duration: 600,
queue: false
});
});
});
并做了一些css更改。 Click here to see the changes