当我将鼠标悬停在立方体上时,我看到弹出...
当我将鼠标悬停在立方体下方的文本上时,我看到颜色的变化... 当我
将鼠标悬停在立方体上时,我如何看到文本的颜色变化?
在下面提供我的代码...
http://jsfiddle.net/Lx7kx/2/embedded/result/
$('document').ready(function() {
window.setTimeout(function() {
$('.cubeCellGuest').each(function() {
var htmlText = $(this).attr('data-text');
$(this).append('<div class="cubeTextStyleGuest">' + htmlText + '</div>');
$(this).hover(
function() {
$(".cubeTextStyleGuest").append("<span class='divStockGuest'>Guest</span>");
},
function() {
$(this).find("span:last").remove();
});
});
}, 600);
});