最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Custom scrolling on html5 canvas - Stack Overflow

programmeradmin4浏览0评论

What is the remended way to provide scrolling and native scrollbars for very large data displayed in an hmtl5 canvas?

I need to display data that is 128000x128000 pixels. Using a canvas with width/height set to 128000 is not an option as that would use an enormous amount of RAM (around 61 GB according to my quick calculation).

So I need a way to provide custom scrollbars for an HTML5 canvas.

What is the remended way to provide scrolling and native scrollbars for very large data displayed in an hmtl5 canvas?

I need to display data that is 128000x128000 pixels. Using a canvas with width/height set to 128000 is not an option as that would use an enormous amount of RAM (around 61 GB according to my quick calculation).

So I need a way to provide custom scrollbars for an HTML5 canvas.

Share Improve this question edited Aug 11, 2012 at 13:33 JohanShogun asked Aug 11, 2012 at 13:27 JohanShogunJohanShogun 2,97623 silver badges32 bronze badges 2
  • Well, if the canvas is drawing the scrollbar, then it won't really be native. What are you trying to achieve? – Jeffrey Sweeney Commented Aug 11, 2012 at 13:48
  • I'm basically looking for a way to display a native scrollbar that I can catch scroll events from. :) – JohanShogun Commented Aug 14, 2012 at 8:11
Add a ment  | 

3 Answers 3

Reset to default 5

After a quick test, I'm not sure Chrome or Firefox will even render a canvas that big. My bet would be to create a canvas element but never append it to the DOM. Just like this:

var hiddenCanvas = document.createElement('canvas');
hiddenCanvas.width = 128000;
hiddenCanvas.height = 128000;
var hiddenContext = hiddenCanvas.getContext('2d');

Then create a smaller canvas that will actually display a portion of your hidden canvas

<canvas width="something reasonable" height="something reasonable" id="viewCanvas"/>

And use the drawImage method to draw portions:

var viewCanvas = document.getElementById('viewCanvas');
var viewContext = viewCanvas.getContext('2d');
viewCanvasContext.drawImage(hiddenCanvas, 40, 50, viewCanvas.width, viewCanvas.height, 0, 0, viewCanvas.width, viewCanvas.height);

Then it would be up to you to either provide up/down/right/left buttons to navigate, or maybe fake scrollbars by using 20px wide DIVs that would only show scrollbars and which you would hook an onscroll even listener on. And each time the user changes position, do a call again to drawImage, updating the x/y positions (40 and 50 in my example).

Having said this, again, even when hidden I doubt that browsers will work with a canvas that big.

I happen to be looking for a solution to the same problem, so if in your research you get lucky, please share.

Interesting question. I haven’t used <canvas> very much, but I believe the inside of the <canvas> is best thought of like an image, i.e. it’s a black box as far as the DOM is concerned.

As such, I don’t think you can really scroll it in the way that you’re imagining. If you had a 128000×128000 <canvas>, you could put it inside a <div> that’s e.g. 1280×1280 and set that <div> to overflow:hidden, but as you say, a 128000×128000 <canvas> is impractical.

I guess the kind of solution you’re looking for would provide a virtual 128000×128000 canvas interface, but then split it up into chunks, provide a scroll interface, and draw in each chunk as it was scrolled into view.

jCanvas is a jQuery plugin which may help you.

发布评论

评论列表(0)

  1. 暂无评论