在 Javascript 中创建 Safari 的查找功能样式文本选择器

发布于 2024-11-15 06:33:03 字数 183 浏览 6 评论 0原文

有什么方法可以使用 Javascript 库轻松实现此文本选择效果吗?做得非常好,我想模仿这个外观。

想知道是否有人做过类似的事情或以前见过这样做,以及他们是否可以提供任何指导。谢谢!

Safari 查找功能文本选择器

Is there any way to make this text selection effect easily with a library in Javascript? It is very well done and I'd like to mirror this look.

Wondering if anyone had done something similar or seen it done before and if they could provide any guidance. Thanks!

Safari Find Function Text Selector

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

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

发布评论

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

评论(2

幸福还没到 2024-11-22 06:33:04

The style is quite similar to the Safari implementation.

怀念你的温柔 2024-11-22 06:33:04

您可以在大多数浏览器中使用 window.find() 以及在 IE 中使用 TextRangefindText() 方法来查找特定字符串的所有出现位置在页面中,然后使用 execCommand() 来设置每个出现的样式。请参阅 HTML 中的全文搜索忽略标签 / & 举个例子。这不会给你弯曲的角落和阴影,但它是一个起点。它在 Opera 中也不起作用。

You can use window.find() in most browsers and TextRange's findText() method in IE to find all occurrences of a particular string in the page, and then use execCommand() to style each occurrence. See Full text search in HTML ignoring tags / & for an example. This won't give you the curvy corners and drop shadow but is a starting point. It also doesn't work in Opera.

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