当我使用 Raphael 将鼠标拖动到像 Photoshop 这样的 div 上时,如何绘制简单的图形

发布于 2024-10-04 15:16:29 字数 490 浏览 5 评论 0原文

这是我的代码:

<div id="handle" style="background:#5f3">

</div>

脚本是:

var set = Raphael(["handle", 400, 400, {
    type: "rect",
    x: 300,
    y: 10,
    width: 25,
    height: 25,
    stroke: "blue"
}, {
    type: "text",
    x: 30,
    y: 40,
    text: "Dump"
}]);

演示在这里:http://jsfiddle.net/ATZNW/

那么如何像 Photoshop 一样绘制简单的图形(例如:矩形),

谢谢

this is my code :

<div id="handle" style="background:#5f3">

</div>

and the script is :

var set = Raphael(["handle", 400, 400, {
    type: "rect",
    x: 300,
    y: 10,
    width: 25,
    height: 25,
    stroke: "blue"
}, {
    type: "text",
    x: 30,
    y: 40,
    text: "Dump"
}]);

the demo is here : http://jsfiddle.net/ATZNW/

so how to draw Simple graphics (ex: rect ) like photoshop ,

thanks

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

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

发布评论

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

评论(1

二智少女 2024-10-11 15:16:29

Raphael 是一个矢量图形库,你想要做的是光栅图形

HTML 元素正是您在这种情况下所需要的。

<canvas id="bg" width="640" height="480"></canvas>

一些基本的 JavaScript:

var bg = document.getElementById('bg').getContext('2d'); // retrieve the 2d context to draw on
bg.fillStyle = '#ff0000'; // set the fill color to red

// draw a filled rectangle at 20/20 thats 200x100 pixel in size
bg.fillRect(20, 20, 200, 100); 

有关该主题的更多信息,请查看 Mozilla 的 Canvas 教程

Raphael is a Library for Vector Graphics, what you want to do is Raster Graphics.

The HTML <canvas> element is exactly what you need in this case.

<canvas id="bg" width="640" height="480"></canvas>

Some basic JavaScript:

var bg = document.getElementById('bg').getContext('2d'); // retrieve the 2d context to draw on
bg.fillStyle = '#ff0000'; // set the fill color to red

// draw a filled rectangle at 20/20 thats 200x100 pixel in size
bg.fillRect(20, 20, 200, 100); 

For more information on the topic check out Mozilla's Canvas Tutorial.

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