4

我似乎无法让 jQuery.css() 接受 hsla() 值。传递颜色值不是可接受的格式吗?这是我尝试过的:

// the below variable outputs a variable value with the following format
// hsla(131, 10%, 100%, 1.0)
var finalcolor = "hsla(" +colx +", " +coly +"%, " +"100%, " +"1.0)";

$('#target-div').css('background', finalcolor);
4

1 回答 1

4

它确实有效,但你的颜色只是白色!

在 firebug / chrome 调试器中检查生成的样式,并检查 HSL 2 RGB 转换器。 http://serennu.com/colour/hsltorgb.php

于 2012-09-04T01:24:37.397 回答