如何使用书签让 div 弹出?
如何制作一个在屏幕中间弹出一个 div 的书签?
看起来很简单,就是看不下去。
How to make a bookmarklet where there's a div that pops up in the middle of the screen?
Seems very simple, i just can't get it down.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要使一个 div 出现在屏幕中间,您需要两个 div,一个在另一个里面:
#
不要忘记 IE6 不支持position:fixed,因此如果检测到 IE6,您可能需要回退到position:absolute 并滚动到页面顶部。
至于小书签:您需要编写构建这些元素的 JavaScript 并将其附加到页面底部。 这里是有关向页面添加元素的详细教程JavaScript。
To make a div appear in the middle of the screen, you need two divs, one inside the other:
#
Don't forget that IE6 doesn't support position: fixed so you might want to fall back to position: absolute and scroll to the top of the page if you detect IE6.
As for the bookmarklet: you need to write javascript that constructs these elements and append it to the bottom of the page. Here's a detailed tutorial on adding elements to a page with javascript.