如何删除三星 Galaxy 浏览器上的视觉反馈框

发布于 2025-01-02 22:11:00 字数 177 浏览 0 评论 0原文

单击链接时,其周围会绘制一个深橙色框架。有时它会保留到下一次滚动或屏幕触摸为止。

当单击其他一些元素时 - 有时也会出现橙色框,其大小与单击的元素(div、canvas)的大小相同,有时更大。

如何调用这种(依赖于平台?)视觉反馈调整以及(主要问题)是否有一种编程(javascript?)方法可以将其关闭?

When a link is clicked a dark orange frame is drawn around it. Sometimes it stays till the next scroll or screen touch.

When some other elements are clicked - the orange frame appears as well sometimes by the size of the clicked element (div, canvas), sometimes bigger.

How this (platform-dependent?) visual feedback tweak is called and (main question) is there a progammatic (javascript?) way to turn it off?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

寂寞美少年 2025-01-09 22:11:00

听起来这是浏览器应用的主动样式。尝试将其添加到您的 css 中:

a:active
{
    border: none;
}

希望有帮助。

更新:如果这不起作用,您可能想尝试

outline: none;

It sounds like that's an active style applied by the browser. Try adding this to your css:

a:active
{
    border: none;
}

Hope that helps.

Update: If that doesn't work you may want to try

outline: none;
风苍溪 2025-01-09 22:11:00

我有一个(可点击的)canvas 元素,周围是完全透明的div。深橙色轮廓(令人惊讶地)是由 div(而不是 canvas)生成的。更令人惊讶的是 - 轮廓的大小比 div 的大小大得多(没有其他元素 - 选中)。因此,我决定关闭大纲,这个(http://stackoverflow.com/questions/7398763/android-browser-remove-outline-border-when-anchor-is-focused)答案解决了问题。

I had a (clickable) canvas element, surrounded by a fully transparent div. The dark orange outline was (surprisingly) generated by a div (not canvas). Even more surprising - the size of the outline was much bigger than the size of div (no other elements - checked). So, I've decided to switch the outline off and this (http://stackoverflow.com/questions/7398763/android-browser-remove-outline-border-when-anchor-is-focused) answer solved the problem.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文