创建“弹出窗口”迷你页面
问题
我计划制作一个类似灯箱的项目页面。我希望用户单击图像时会弹出一个 div,其中包含一篇带有段落、图像以及我想放入其中的其他内容的文章。它基本上是一篇可滚动的文章,悬停在原始页面上,用户可以关闭该文章以再次查看项目页面。我不想强迫用户在进入图库页面时下载每篇文章。
请求
有没有办法从服务器上存储的 html 文件中提取这样的小文章?有没有更好的方法来解决这个问题?
-edit- 我不想使用 jQuery 或任何其他 javascript 库。这个网站将呈现给 JavaScript 课程,所以我希望这一切都是正常的 JavaScript 代码。此外,我宁愿学习 jQuery 是如何做的,也不愿盲目地使用它。
提前致谢!
Issue
I'm planning on making a lightbox-like project page. I want to have it where the user clicks on an image and it brings up a div that contains a article with paragraphs, images, and whatever else I want to put in it. It will basically be a scrollable article that hovers over the original page which the user can close to see the project page again. I'd prefer to not force the user to download every article when they enter the gallery page.
Request
Is there a way to pull a small article like this from say, an html file stored on the server? Is there a better way to approach this problem?
-edit- I'd prefer to not use jQuery or any other javascript library. This website will be presented to a Javascript course, so I would like it all to be normal javascript code. Besides, I'd would rather learn how jQuery does it than use use it blindly.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一个用纯 JavaScript 编写的简单灯箱,从指定的 URL 加载其内容。它不能优雅地处理错误,如果它可以在 IE 中运行,也只能在较新的版本中运行。
由于它获取目标页面的 HTML 并将其直接插入到文档中,因此如果 URL 指向完整的 HTML 页面,它的行为可能会很奇怪。如果 URL 仅指向 HTML 片段(没有
或
标记),效果最佳。
Mozilla 的 AJAX 教程可能对您也有用。
Here's a simple lightbox in pure JavaScript, loading its content from a specified URL. It doesn't handle errors gracefully and if it works in IE, it's only in newer versions.
Since it is taking the HTML of the target page and inserting it into your document directly, it might behave oddly if the URL points to a complete HTML page. It would work best if the URL only points to an HTML snippet (no
<html>
or<body>
tags).Mozilla's AJAX tutorial may be of use to you as well.
查看 jQuery 和 FancyBox。我认为这可以涵盖它。 http://fancybox.net/
Check out jQuery and FancyBox. I think that would cover it. http://fancybox.net/
我喜欢 http://www.no-margin- for-errors.com/projects/prettyphoto-jquery-lightbox-clone/
i like http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/