0
當我將鼠標懸停在立方體下面的文本..... 我需要顯示一個小窗口,其中有文字.... 我從js得到的文本,但不知道如何與懸停功能整合.... 你能告訴我如何實現它.... 提供下面我的代碼..... 當我將鼠標懸停在CRM它應該顯示客戶關係管理..... 提供下面我的代碼... 懸停功能工作正常,當我將鼠標懸停在文本框中.... 但我不知道如何獲得立方體下面的文字...... 我有包括onmouseover和onmouseout功能..... 但我不知道如何實現E對於立方體下面的文本徘徊文本爲完整形式
$('document').ready(function() {
window.setTimeout(function() {
$('.cubeCell').each(function() {
var htmlText = $(this).attr('data-text');
$(this).append('<div class="cubeTextStyle">' + htmlText + '</div>');
});
}, 600);
});
<script type="text/javascript">
function showStock(ii) {
var sh = $(ii).parent().find($('.divStock'));
var sharrow = $(ii).parent().find($('.stockarrow'));
sh.show();
sharrow.show();
}
/**
* hide stock
*/
function hideStock(ii) {
var shs = $(ii).parent().find($('.divStock'));
var sharrows = $(ii).parent().find($('.stockarrow'));
shs.hide();
sharrows.hide();
}
</script>
HTML:
<div class="cubeCell" data-text="CRM" class="desktopContactImage cubeCell"
data-caption="<a style='padding-left: 40px; font-size: 14px; color: grey;' href='/Inventory/Partnumber/?ps=list' >Register</a> <div> <a style='padding-left: 40px; font-size: 14px; color: grey;' href='/Bom/Bom/?ps=list' >Demo</a> </div> <a style='padding-left: 40px; font-size: 14px; color: grey;' >Reports</a>"
data-image="http://intra.defie.co/images/Desktop_icons_02.07.13/guest.png"></div>
您的jsfiddle形式不正確。按照jsfiddle的建議和去除不需要的元素(JavaScript包括,CSS包括等)。 – Lowkase 2013-03-12 19:45:02
看到Lowkase所指的是什麼,點擊TidyUp按鈕。 – isherwood 2013-03-12 19:46:21
你不需要'window.setTimeout(函數(){' – dfsq 2013-03-12 19:46:51