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.
我正在我的网页中进行图像裁剪。我的问题是,当我裁剪大于容纳图像的容器的大图像时,滚动条不会自动出现。所以我无法裁剪剩余部分在下方的大图像对用户不可见的容器。所以有什么方法可以创建自动滚动条。提前谢谢。
您想使用 css 溢出属性
<div style='overflow:auto;width:300px;height:300px;'> <img src='image.png' width='1000' height='1000' /> </div>
它将加载 1000x1000 像素的图像,但可滚动区域仅为 300 x 300 像素。
其他可能的溢出值是:可见、隐藏、滚动、自动、继承
http://www.w3schools.com/cssref/pr_pos_overflow.asp