Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在宽度不等的画布上绘制图表。每个画布都可以有自己的滚动条吗?我试图将所有画布放在一个 div 中并指定一个最大宽度,但它不起作用。是否有可能所有画布在页面上的可见宽度为 500 像素,并且每个画布都有其滚动条来查看画布的整个宽度。
谢谢你。
指定画布的总宽度,然后将其包装在一个 div 中。将 div 设置为overflow: scroll500px 宽度。然后,您应该有滚动条,允许您滚动并查看画布的隐藏部分。对所有画布重复此操作。
overflow: scroll
<div style="max-height: 256px;max-width:256px;overflow: scroll;"> <canvas width="512px" height="512px"></canvas> </div>