HTML canvas with scrollbar

后端 未结 1 1770
太阳男子
太阳男子 2020-12-01 21:17

I am drawing graphs on canvases which have large unequal widths. Is it possible for each canvas to have its own scrollbar? I tried to put all the canvases in one div and spe

相关标签:
1条回答
  • 2020-12-01 21:42

    Specify the total width of the canvas then wrap it in a div. Set the div to overflow: scroll and give that the 500px width. You should then have scrollbars allowing you to scroll and see the hidden parts of the canvas. Repeat this for all of the canvases.

    <div style="max-height: 256px;max-width:256px;overflow: scroll;">
              <canvas width="512px" height="512px"></canvas>
    </div>   
    
    0 讨论(0)
提交回复
热议问题