缩小 div 的内容而不是 DIV 本身。
有谁知道是否可以像浏览器缩小页面一样缩小 div 的内容?
我正在创建一个加载并分页到 div 的应用程序。但是,我希望能够在没有滚动条的情况下加载内容。这意味着 div 内部的内容而不是实际的 div 必须被缩小。我知道这可以通过图像来完成,但是可以通过 HTML 内容来完成吗?如果是这样,您是否有任何使用 jquery 或其他相关内容的示例。
Does any one know if it is possible to zoom out the contents of a div much like browser zooms out a page?
I am creating an application that loads and page into a div. However, I would like to be able to load the content without scroll bars. This would mean that the content inside of the the div not the actual div would have to be zoomed out. I know that this could be done with an image but can it be done with HTML content. If so do you have any examples using jquery or anything else for that matter.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
执行您想要执行的操作的最简单方法是使用
并将
scroll
设置为none
。将他人的数据(如果您无权)解析为您自己的格式已被视为侵犯版权。
Easiest way to do what you're trying to do would be to use
<iframe>
withscroll
set tonone
.Parsing someone else's data (if you don't have the rights to it) into your own formatting has been deemed copyright infringement.