我不确定这是否可行,但我试图获取$ css_color的值并将其设置为div中的十六进制值。还有$ x和$ y值。
基本上,我试图从图像中获取$ x $ y信息和十六进制代码值,并将其与我在formatted_colors.js中的颜色值数组匹配,然后将“image”重建为div背景颜色作为测试。
我的formatted_colors.js数组var colors = []; colors["000000"] = "black"; colors["100000"] = "black";
这是一个片段:
<script type="text/javascript" src="jquery-1.6.2.js"></script>
<script src="formatted_colors.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
//iterate through pixels and match rounded color to array in formatted_colors.js
<div class="rounded_color" hex="<?php $css_color ?>" xy="<?php $x.$y ?>"</div>
<div id="<?php $x.$y ?>"></div>
$(document).ready(function() {
$(".rounded_color").each(function(){
var google_color = getColor($(this).attr("hex"));
$('#'+$(this).attr("id")).html(google_color);
$('#'+$(this).attr("id")).css('background-color:', google_color);
})
// get name of color function from formatted_colors.js
function getColor(target_color){
if (colors[target_color] == undefined) { // not found
return "no match";
} else {
return colors[target_color];
}
} // end getColor function
)} // end ready function
</script>
这是我的整个代码:http://pastebin.com/A4tMsn2C
答案 0 :(得分:1)
尝试<?php echo $x.$y ?>
代替(和其他代码类似)。或者,如果您启用了短标签<?= $x . $y ?>
。您的版本只是简单地进行连接并丢弃结果。你需要回显你在PHP块中所做的任何事情的结果。