TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

A bookmarklet to disable position:fixed floating toolbars in any browser

1 点作者 nateparrott超过 11 年前
I&#x27;m not a huge fan of the trend of putting (sometimes multiple) fixed-position, floating bars on web sites. I&#x27;m sure there are browser extensions that get rid of them, but in mobile Safari, where the screen space they take up is most precious, that isn&#x27;t an option. Here&#x27;s a js bookmarklet that gets rid of anything with position:fixed<p>javascript:var%20nodes%20=%20document.querySelectorAll(&#x27;*&#x27;);for%20(var%20i=0;%20i%3Cnodes.length;%20i++)%7B%20var%20node%20=%20nodes%5Bi%5D;%20var%20style%20=%20getComputedStyle(node);%20if%20(style.position==&#x27;fixed&#x27;)%20%7Bnode.style.position=&#x27;absolute&#x27;%7D%7D<p>(except, mysteriously, on the tumblr mobile site, where some floating buttons survive. Anyone know why?)

暂无评论

暂无评论