将鼠标悬停在文本 CRM 上时,会弹出一个弹出窗口。当我将鼠标悬停在文本上时,文本颜色应该会改变——悬停时文本的颜色应该变成红色。
我在下面提供了我的代码。
我把悬停属性给了我的班级,但它不起作用。我如何解决它?
http://jsfiddle.net/a5tjG/3/embedded/result/
.cubeTextStyleCRM:hover {
color: red;
}
$('document').ready(function() {
window.setTimeout(function() {
$('.cubeCellCRM').each(function() {
var htmlText = $(this).attr('data-text');
$(this).append('<div class="cubeTextStyleCRM">' + htmlText + '</div>');
$(this).hover(
function() {
$(".cubeTextStyleCRM").append("<span class='divStock'>Customer Relationship Management</span>");
},
function() {
$(this).find("span:last").remove();
});
});
}, 600);
});
<div class="cubeCellCRM" data-text="CRM" data-caption="
<a style='padding-left: 40px; font-size: 14px; color: grey;' href='#' >Create</a> <div>
<a style='padding-left: 40px; font-size: 14px; color: grey;' href='#' >View/Edit</a> </div>
<a style='padding-left: 40px; font-size: 14px; color: grey;' href='#' >Reports</a>"
data-image="http://intra.defie.co/images/Desktop_icons_02.07.13/CRM.png"></div>
</div>