我想使用颜色代码。例如#e06666而不是红色。
content.push('<p><div class="color red"></div>Whole Foods Market</p>');
我该怎么做?
答案 0 :(得分:3)
在这个具体例子中,你应该使用:
content.push('<p><div class="color" style="color:#e06666"></div>Whole Foods Market</p>');
但是,定义CSS样式要好得多:
.custom-color {
color: #e06666;
}
并为 div 标记设置一个类:
content.push('<p><div class="color custom-color"></div>Whole Foods Market</p>');
答案 1 :(得分:0)
content.push('<p><div style="color = #e06666"></div>Whole Foods Market</p>');
答案 2 :(得分:0)
由于这是一个类而不是颜色引用,您必须找到您的css文件,该文件将在您的页面上使用标记定义,或者您的页面上可能包含.red类的块。
在任何一个地方你都应该看到这样的东西。
.red{
color:red;
}
更换颜色:红色;与颜色对齐:#e06666;
答案 3 :(得分:0)
您可以使用 $("ul#menu a").hover(function() {
$(this).stop().animate({
bottom: '0px'
}, 1000);
},
function() {
$(this).stop().animate({
bottom: '-65px'
}, 1000);
});
$("ul#menu a i").hover(function() {
$(this).stop().animate({
top: '0px'
}, 1000);
},
function() {
$(this).stop().animate({
top: '20px'
}, 1000);
});
获取rgb()
"red"
个关键字的值,将window.getComputedStyle()
转换为十六进制,请参阅RGB to Hex and Hex to RGB。
rgb()