如何为应用程序屏幕截图创建一个漂亮的水平滚动区域,就像 iTunes 上的应用程序一样?
我想将一些应用程序屏幕截图添加到我的网站,但我想将它们放在水平滚动区域中,就像 iTunes Store 应用程序屏幕截图区域一样。
我该如何实现这一点,或者有人可以指出我正确的方向。谢谢。
I have some app screenshots I'd like to add to my website, but I'd like to but them in a horizontal scroll area just like the iTunes Store app screenshots area.
How can I implement this or can someone point me in the right direction. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只要您将“内容”设置为水平流动,一旦内部 div 宽度超过 800px 并“溢出”外部 div,它就会创建一个水平滚动条。
as long as you style the "content" so it flows horizontally, it'll create a horizontal scrollbar once the inner div grows wider than 800px and "overflows" the outer div.
以此作为 CSS 创建一个 DIV:
这将创建一个具有自动溢出功能的 980x310px div,因此如果内容比像素数量宽,它将自动添加滚动条。
为了防止出现“新行”,我通常在其中添加一个表:
Create a DIV with this as CSS:
This will create a 980x310px div with an auto overflow so it will automatically add a scroll if the content is wider than the amount of pixels.
To prevent 'new lines' from happening, I usually add a table in it: