2

我开发了一个 HTML5 画布图,它检索 SQL 存储的信息并在 HTML5 画布上以图形方式(颜色编码)绘制它们。画布允许滚动时间轴以显示已发生的各种事件(例如 1990 年至 2013 年之间)。

IE 就像一个魅力。

Chrome 的上下文字体出现浑浊/出血效果的问题 - 我使用的是等宽 11px,后来我将其更改为 verdana,但使用 chrome 仍然有点浑浊。Firefox 没有这个问题。

Firefox 有一个问题,它会在画布上检索和绘制信息,但是当我单击画布以滚动时间轴上当前位置的过去或未来时,整个画布都会消失。Chrome 没有这个问题。

我试图解释我在这个问题上的问题,如果您需要更多说明,请询问。

这是示例代码:-

http://jsfiddle.net/WNpKE/16/

(如果您点击链接并在 IE、FireFox 和 Chrome 中打开它,我希望问题会更加明显。)

  // defining the canvas element
            var can = document.getElementById("myCanvas"),
                ctx = can.getContext("2d"),
                dragging = false,
                translated = 0,
                lastX = 0,
                grid = (function (dX, dY) {
                    var can = document.createElement("canvas"),
                        ctx = can.getContext('2d');
                    can.width = dX;
                    can.height = dY;
                    // fill canvas color
                    ctx.fillStyle = 'black';
                    ctx.fillRect(0, 0, dX, dY);

                    // x axis
                    ctx.strokeStyle = 'orange';
                    ctx.moveTo(.5, 0.5);
                    ctx.lineTo(dX + .5, 0.5);
                    ctx.stroke();

                    // y axis
                    ctx.moveTo(.5, .5);
                    ctx.lineTo(.5, dY + .5);
                    ctx.stroke();

                    return ctx.createPattern(can, 'repeat');
                })(72, 50);

            ctx.save();
            /*ctx.scale(1, -1);
            ctx.translate(0, -900);*/



            // when mouse is clicked on canvas
            can.onmousedown = function (e) {
                var evt = e || event;
                dragging = true;
                lastX = evt.offsetX;
            }


            // when mouse is clicked again and the canvas is deselected  
            window.onmouseup = function () {
                dragging = false;
            }




            window.onmousemove = function (e) {
                var evt = e || event;
                if (dragging) {
                    var delta = evt.offsetX - lastX;
                    translated += delta;
                    //console.log(translated);
                    ctx.restore();
                    ctx.clearRect(0, 0, 930, 900);
                    ctx.save();
                    ctx.translate(translated, 0);
                    lastX = evt.offsetX;
                    timeline();
                }
            }






            // Function that draws the timeline on the xy grid along with data points.
            function timeline() {

                // fill canvas color
                ctx.fillStyle = "black";
                ctx.fillRect(-translated, 0, 930, 900);
                ctx.fillStyle = grid;
                ctx.fillRect(-translated, -250, 930, 900);


                // y-co-ordinate texts - Home, Office, Emergency, etc...
                ctx.strokeStyle = "White";
                ctx.font = "10px Verdana";
                ctx.strokeText("Home", -translated, 510);

                ctx.strokeStyle = "White";
                ctx.font = "10px Verdana";
                ctx.strokeText("Office", -translated, 460);

                ctx.strokeStyle = "White";
                ctx.font = "10px Verdana";
                ctx.strokeText("Emergency", -translated, 410);

                ctx.strokeStyle = "White";
                ctx.font = "10px Verdana";
                ctx.strokeText("Foster Home", -translated, 360);

                ctx.strokeStyle = "White";
                ctx.font = "10px Verdana";
                ctx.strokeText("SNF", -translated, 310);

                ctx.strokeStyle = "White";
                ctx.font = "10px Verdana";
                ctx.strokeText("LTC", -translated, 260);

                ctx.strokeStyle = "White";
                ctx.font = "10px Verdana";
                ctx.strokeText("Drug/Rehab", -translated, 210);

                ctx.strokeStyle = "White";
                ctx.font = "10px Verdana";
                ctx.strokeText("Hospital", -translated, 160);

                ctx.strokeStyle = "White";
                ctx.font = "10px Verdana";
                ctx.strokeText("Hospice", -translated, 110);


                ctx.strokeStyle = "White";
                ctx.font = "10px Verdana";
                ctx.strokeText("ANP Exams", -translated, 540);
                ctx.strokeStyle = "White";
                ctx.font = "10px Verdana";
                ctx.strokeText("Life Event", -translated, 560);
                ctx.strokeStyle = "White";
                ctx.font = "10px Verdana";
                ctx.strokeText("Care Plan", -translated, 610);

自从这段代码以来,我已经改变了一些,但点击和滚动的基本思想仍然是一样的。谢谢。

4

2 回答 2

4

使用fillText而不是strokeText.

发生 FF 错误是因为 FF 事件对象没有offsetX属性。改为使用pageX

更新小提琴:http: //jsfiddle.net/WNpKE/18/

于 2013-03-19T19:39:43.467 回答
0

看看highcharts API。它是免费的,并且具有大量的功能。我最近在 Web 应用程序中使用它来查询 SQL 数据库中的数据,这与您正在做的事情不同。它适用于所有主要浏览器。

我猜画布元素(作为 html5 的新功能)在浏览器之间的呈现方式不同。您最好用 javascript / java 重写或直接使用 highcharts 框架。我意识到这不是解决您当前问题的方法,但它可能会为您节省一些时间。

祝你好运!

于 2013-03-19T00:11:31.013 回答