我正在使用Bootstrap作为我的css主题。主题被编译并保存到数据库中以供以后使用。这意味着页面只能访问已编译的css,而不能访问较少的文件。
鉴于此,我如何将Bootstrap的tr:hover
效果应用于各种div?我需要的颜色与tr:hover
定义的颜色相同,我不能使用更少的变量。
Bootstrap的风格:
.table tbody tr:hover td,
.table tbody tr:hover th {
background-color: #f5f5f5;
}
是否可以根据分配给tr
的另一个css元素定义css元素?有没有办法使用jQuery获取样式?
有什么建议吗?
答案 0 :(得分:26)
为div
创建一个.hoverDiv
类,并为此创建CSS:
.hoverDiv {background: #fff;}
.hoverDiv:hover {background: #f5f5f5;}
$(document).ready(function(){
$(".hoverDiv").hover(function(){
$(this).css("background", "#f5f5f5");
}, function(){
$(this).css("background", "#fff");
});
});
$(".table tbody tr:hover").css("background-color")
:$(document).ready(function(){
$(".hoverDiv").hover(function(){
$(this).css("background", $(".table tbody tr:hover").css("background-color"));
}, function(){
$(this).css("background", $(".table tbody tr").css("background-color"));
});
});
答案 1 :(得分:0)
这是不可能的 - 不是没有javascript。
使用less变量将是一个不错的选择。但如果你不能这样做,这里是javascript解决方案:http://jsfiddle.net/joplomacedo/b5DMA/
var stylesheets = document.styleSheets,
stylesheet, new_stylesheet, rules, rule, i = 0,
max_i = stylesheets.length,
j, max_j;
for (i = max_i; i--;) {
stylesheet = stylesheets[i];
rules = stylesheet.cssRules;
j = 0;
max_j = rules.length;
for (j = max_j; j--;) {
rule = rules[j];
if (rule && rule.selectorText.indexOf('.table tbody tr:hover th') > -1) {
new_stylesheet = document.createElement('style');
new_stylesheet.innerText = ".el:hover{" + rule.style.cssText + "}";
document.getElementsByTagName('head')[0].appendChild(new_stylesheet);
}
}
}