我想創建的圖像和懸停行的下一個元素 - 顯示有關項目的,如價格和鏈接到該項目的更多信息。現在懸停時,包含更多信息(黃色)的框將顯示在項目下方,我希望它顯示爲一個元素,其中右側的信息和左側的項目圖片。我也不希望它滑動下一個項目,但在下一個項目頂部顯示黃色的信息框。這很難解釋,所以看看基本代碼:http://jsfiddle.net/ryanabennett/bFZDL/1/如何顯示上懸停jQuery函數沒有正確滑動
正如你可能從這個問題可以告訴我,我很新的編碼,並嘗試過不同的位置元素,但似乎沒有任何工作。希望你能幫助。
這裏是我的HTML:
<div class="productbox">
<div class="livitem">
<div class="Livwidgetexpandimg">
<a href="#"><img src="#" class="popupbox" /></a>
<div class="popup"></div>
</div>
</div>
</div>
<div class="productbox">
<div class="livitem">
<div class="Livwidgetexpandimg">
<a href="#"><img src="#" class="popupbox" /></a>
<div class="popup"></div>
</div>
</div>
</div>
這裏是我的CSS:
.productbox{
float: left;
height: 150px;
margin-left: 5px;
overflow: hidden;
}
.livitem{
float: left;
position: relative;
top: 3px;
}
.livitem:hover{
background: yellow;
}
.Livwidgetexpandimg{
background: blue;
height: 75px;
margin-left: 10px;
margin-top: 10px;
margin-right: 10px;
padding: 5px;
width: 75px;
float: left;
}
.popupbox{
border: medium none;
height: 75px;
width: 75px;
}
.popup{
background: yellow;
display: none;
float: left;
height: 122px;
margin-left: -10px;
opacity: 0;
width: 175px;
z-index: 50;
}
這裏是我的JQuery:
$(function() {
$('.livitem').each(function() {
var distance = 10;
var time = 200;
var hideDelay = 1;
var hideDelayTimer = null;
var beingShown = false;
var shown = false;
var trigger = $('.Livwidgetexpandimg', this);
var info = $('.popup', this).css('opacity', 0);
$([trigger.get(0), info.get(0)]).mouseover(function() {
if (hideDelayTimer) clearTimeout(hideDelayTimer);
if (beingShown || shown) {
// don't trigger the animation again
return;
} else {
// reset position of info box
beingShown = true;
info.css({
top: 10,
left: -3,
display: 'block'
}).animate({
top: '-=' + distance + 'px',
opacity: 1
}, time, 'swing', function() {
beingShown = false;
shown = true;
});
}
return false;
}).mouseout(function() {
if (hideDelayTimer) clearTimeout(hideDelayTimer);
hideDelayTimer = setTimeout(function() {
hideDelayTimer = null;
info.animate({
top: '-=' + distance + 'px',
opacity: 0
}, time, 'swing', function() {
shown = false;
info.css('display', 'none');
});
}, hideDelay);
return false;
});
});
});
希望你將能夠幫助我.. 。
也許這顯示了所需的結果將有助於足夠 – Sotiris
不能確定某個解決方案的圖像,但認爲我會推薦別的選擇[泡泡的jQuery插件(http://www.vegabit.com/Examples/position-align的.html)。 –
這裏是成品的圖片的鏈接:http://www.flickr.com/photos/[email protected]/5937560243/in/photostream –