js+css实现文本划词选择搜索效果代码
代码语言:html
所属分类:其他
代码描述:js+css实现文本划词选择搜索效果代码,非常适和划词翻译操作。
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>获取选中文本</title> <style> body { font-family: Arial, sans-serif; line-height: 1.6; padding: 20px; } p { max-width: 600px; margin: 0 auto; } #selection-button { position: absolute; background-color: #4CAF50; color: white; border: none; border-radius: 50%; width: 30px; height: 30px; font-size: 14px; cursor: pointer; display: none; z-index: 1000; padding: 0; line-height: 30px; text-align: center; } #selection-button:hover { background-color: #45a049; } #result { margin-top: 20px; padding: 10px; background-color: #f0f0f0; border: 1px solid #ddd; border-radius: 5px; } </style> </head> <body> <p>这是一段示例文本。你可以在这里选择任何文字,选中文本的最后一个字右上方会出现一个按钮。点击按钮将会获取所选文字并显示在下方。你可以尝试选择不同的词语或短语来测试这个功能。</p> <button id="selection-button" title="获取选中文本">✓</button> <div id="result"></div> <script> const selectionButton = document.getElementById('selection-button'); const resultDiv = document.getElementById('result'); let currentSelec.........完整代码请登录后点击上方下载按钮下载查看
网友评论0