如何使用纯javascript以工具提示形式在画布上显示鼠标坐标?

发布于 2024-10-08 20:30:36 字数 206 浏览 0 评论 0 原文

所以它是关于 html5 canvas 的。因此,当鼠标位于画布上时,我想在鼠标附近以工具提示的形式看到类似 x:11, y:33 的内容,例如 alt text... 鼠标移动工具提示随之移动,显示坐标。如何用 javascript 和 html 5 来做这样的事情?

So its about html5 canvas. So I want to see something like x:11, y:33 in form of tooltip near to mouse when mouse is on canvas like alt text... mouse moves tooltip moves with it showing coordinates. How to do such thing with javascript and html 5?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烦人精 2024-10-15 20:30:36
$(function() {
  var canvas = $('#canvas').get(0);
  var ctx = canvas.getContext('2d');
  var w = h = canvas.width = canvas.height = 300;

  ctx.fillStyle = '#0099f9';
  ctx.fillRect(0, 0, w, h);

  canvas.addEventListener('mousemove', function(e) {
    var x = e.pageX - canvas.offsetLeft;
    var y = e.pageY - canvas.offsetTop;
    var str = 'X : ' + x + ', ' + 'Y : ' + y;

    ctx.fillStyle = '#0099f9';
    ctx.fillRect(0, 0, w, h);
    ctx.fillStyle = '#ddd';
    ctx.fillRect(x + 10, y + 10, 80, 25);
    ctx.fillStyle = '#000';
    ctx.font = 'bold 20px verdana';
    ctx.fillText(str, x + 20, y + 30, 60);

  }, 0);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<canvas id="canvas"></canvas>

一个简单的演示

$(function() {
  var canvas = $('#canvas').get(0);
  var ctx = canvas.getContext('2d');
  var w = h = canvas.width = canvas.height = 300;

  ctx.fillStyle = '#0099f9';
  ctx.fillRect(0, 0, w, h);

  canvas.addEventListener('mousemove', function(e) {
    var x = e.pageX - canvas.offsetLeft;
    var y = e.pageY - canvas.offsetTop;
    var str = 'X : ' + x + ', ' + 'Y : ' + y;

    ctx.fillStyle = '#0099f9';
    ctx.fillRect(0, 0, w, h);
    ctx.fillStyle = '#ddd';
    ctx.fillRect(x + 10, y + 10, 80, 25);
    ctx.fillStyle = '#000';
    ctx.font = 'bold 20px verdana';
    ctx.fillText(str, x + 20, y + 30, 60);

  }, 0);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<canvas id="canvas"></canvas>

A simple Demo

丘比特射中我 2024-10-15 20:30:36

我编写了一个 HTML5 画布工具提示来执行此操作。它是用 Processing.js 库编写的,用于我正在编写的可视化 Web 应用程序,但它也可以从纯 JavaScript 中使用。您可以从 GitHub Gist 下载带有示例网页的代码。您可以阅读并查看一个实时示例,该示例恰好显示了鼠标坐标,此处

I wrote an HTML5 canvas tooltip that will do this. It's written with the Processing.js library for a visualization web-app I'm writing, but it can be used from pure javascript also. You can download the code with example web page from GitHub Gist. You can read about and see a live example, which happens to show the mouse coordinates, here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文