Underline text with line when selected(选中时为文本加下划线)
问题描述
创意:
我希望在选择文本部分时将文本加下划线(最好是渐变色like here),而不是更改背景。根据Mozillatext-decoration
是可能的,text-decoration: underline
也是可能的。
问题:
(text-decoration
带::selection
不适用于我(Chrome&;Edge)-已解决)。
解决方案理念:
在进行选择时是否可以将文本加下划线为渐变?我的一个想法是使用JavaScript
查看文本是否被选中,然后在文本之间添加一个id="underline"
,然后包含渐变线的CSS代码。
进度:
整件事不是纯css就能实现的。我现在已经更改了代码,以便当选定内容也是时,文本会适当地加下划线。
进度问题:
即使在取消选择后,该行仍保持不变。
当前代码:
数据-lang="js"数据-隐藏="假"数据-控制台="真"数据-巴贝尔="假"> function wrapSelectedText() {
var selectedText = window.getSelection().getRangeAt(0);
var selection = window.getSelection().getRangeAt(0);
var selectedText = selection.extractContents();
var span = document.createElement("span");
/* Styling */
span.style.backgroundImage = "linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%)";
span.style.backgroundRepeat = "no-repeat";
span.style.backgroundSize = "100% 0.2em";
span.style.backgroundPosition = "0 88%";
span.appendChild(selectedText);
selection.insertNode(span);
}
document.onmouseup = document.onkeyup = document.onselectionchange = function() {
wrapSelectedText();
};
::selection {
background: none;
}
<p>This is an example text.</p>
推荐答案
文本装饰需要已存在于元素上,方法是在p
元素上定义text-decoration: underline overline transparent;
它确实起作用。
::selection {
background: yellowgreen; /* To check if the text is selected */
text-decoration: underline overline #FF3028; /* Only works on elements that have the same decoration properties set already */
}
p {
color: black;
font-size: 18px;
text-decoration: underline overline transparent;
}
<p>This is an example text.</p>
这篇关于选中时为文本加下划线的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:选中时为文本加下划线
基础教程推荐
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 动态更新多个选择框 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06