Canvas has white space at the bottom and scrolls too far(画布底部有空白区域并且滚动太远)
问题描述
我正在使用这个答案 https://stackoverflow.com/a/36233727/1350146 来滚动画布在一个div中.我也隐藏了滚动条.问题是它似乎滚动得太远了,在这种情况下,如果您向下滚动,您可以看到画布所在的 div 的红色.
I'm using this answer https://stackoverflow.com/a/36233727/1350146 to scroll a canvas in a div. I'm also hiding the scrollbar. The problem is it appears to scroll too far, in this case if you scroll down you can see the red of the div the canvas is in.
我试过搞乱填充 &边距和不同的大小,但没有运气.
I've tried messing with padding & margins and different sizes but no luck.
var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
ctx.fillStyle = '#00aa00'
ctx.fillRect(0, 0, c.width, c.height);
ctx.fillStyle = '#fff'
ctx.font='12pt A'
ctx.fillText("scroll here to see red from screen div", 30, 50);
.screen {
background: red;
height: 100px;
width: 300px;
overflow: auto;
border-radius: 20px;
}
::-webkit-scrollbar {
width: 0px;
height: 0px;
}
<div class="screen">
<canvas id="myCanvas" width="300" height="120">
</canvas>
</div>
如何让它滚动到画布的末尾而不显示下面的任何容器 div?
How can I make it scroll just to the end of the canvas and not show any of the container div underneath?
谢谢!
推荐答案
使画布成为 block
元素或使用 vertical-align:top
.默认情况下,canvas 是一个内联元素,它的行为类似于 img
;因此,由于垂直对齐,您将遇到空白问题(内部图像div 在图片下方有多余的空间)
Make the canvas a block
element or use vertical-align:top
. By default, canvas is an inline element and it will behave similary to an img
; thus you will have the whitespace issue due to vertical alignement (Image inside div has extra space below the image)
var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
ctx.fillStyle = '#00aa00'
ctx.fillRect(0, 0, c.width, c.height);
ctx.fillStyle = '#fff'
ctx.font='12pt A'
ctx.fillText("scroll here to see red from screen div", 30, 50);
.screen {
background: red;
height: 100px;
width: 300px;
overflow: auto;
border-radius: 20px;
}
canvas {
display:block;
}
::-webkit-scrollbar {
width: 0px;
height: 0px;
}
<div class="screen">
<canvas id="myCanvas" width="300" height="120">
</canvas>
</div>
这篇关于画布底部有空白区域并且滚动太远的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:画布底部有空白区域并且滚动太远


基础教程推荐
- 如何使用sencha Touch2在单页中显示列表和其他标签 2022-01-01
- 每次设置弹出窗口的焦点 2022-01-01
- 如何使用 CSS 显示和隐藏 div? 2022-01-01
- 什么是不使用 jQuery 的经验技术原因? 2022-01-01
- Javascript 在多个元素上单击事件侦听器并获取目标 2022-01-01
- 如何在特定日期之前获取消息? 2022-01-01
- jQuery File Upload - 如何识别所有文件何时上传 2022-01-01
- WatchKit 支持 html 吗?有没有像 UIWebview 这样的控制器? 2022-01-01
- Node.js 有没有好的索引/搜索引擎? 2022-01-01
- 为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT? 2022-01-01