English 中文(简体)
我如何根据超文本/贾瓦文中六主席的颜色,检查特定六分子和改动案文的颜色和案文的颜色?
原标题:How do I check the color of a specific pixel and change text and color of text in an h1 depending on the color of the pixel in HTML5/JavaScript?

我正试图找到一个特定的子子和改动案文的颜色,以及一只黑色的文字,这取决于超文本5和 Java本中六分的颜色。 我有相关颜色的坐标,图像来自URL。 我已经为我想要改变的颜色开设了CSS课程。

坐标为315,189。

我尝试使用我在不同网站上发现的法典,但从未解释如何做任何事情,只是给法典,因此它从未奏效。

function getPixel(url, x, y) {
  var img = new Image();
  img.src = //this is where the url goes;
  var canvas = document.createElement( canvas );
  var context = canvas.getContext( 2d );
  context.drawImage(img, 0, 0);
  return context.getImageData(x, y, 1, 1).data;
}
问题回答

暂无回答




相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签