当我将鼠标悬停在立方体下方的文本时.....我需要显示一个带有文本的小窗口....我从 js 得到文本但不知道如何与悬停功能集成....可以你告诉我如何实现它......在下面提供我的代码......当我将鼠标悬停在 CRM 上时,它应该显示客户关系管理......在下面提供我的代码......当我悬停功能工作正常时将鼠标悬停在文本框上......但我不知道如何获取立方体下方的文本......我已经包含了 onmouseover 和 onmouseout 功能......但我不知道如何实现立方体下方的文字
$('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>