Home  >  Article  >  Web Front-end  >  如何实现双击选中文本背景色自定义效果_html/css_WEB-ITnose

如何实现双击选中文本背景色自定义效果_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:28:261303browse

如何实现双击选中文本背景色自定义效果:
本章节介绍一下如何实现当双击选中一定区域的文本的时候,实现背景色自定义的效果。
下面就通过代码实例做一下简单介绍:

<!DOCTYPE html><html><head><meta charset=" utf-8"><meta name="author" content="http://www.softwhy.com/" /><title>蚂蚁部落</title><style type="text/css">::selection{  background-color:#84ca7f;  color:#000;}::-webkit-selection{  background-color:#84ca7f;  color:#000;}::-moz-selection{  background-color:#84ca7f;  color:#000;}</style></head><body><div>softwhy.com是蚂蚁部落的网址。</div></body></html>

上面的代码实现了我们的要求,其实就是通过::selection选择器对选中的文本进行相关的设置,通常都是使用鼠标划选,当然也可以通过双击方式选中,代码非常简单,关于::selection选择器可以参阅CSS3的::Selection属性用法详解一章节。

原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=16350

更多内容可以参阅:http://www.softwhy.com/divcss/

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn