当前位置:网站首页>About text selection in web pages and counting the length of selected text
About text selection in web pages and counting the length of selected text
2022-07-03 15:40:00 【Do front-end Pinellia ternata】
*Hello everyone , I am Pinellia ternata , A sand carving programmer who just started writing . If you like my article , Can pay attention to give the thumbs-up Add me WeChat :「frontendpicker」, Learn to communicate together , Become a better Engineer ~ Official account :** Pinellia ternata **, Learn more about the front end ! Am I Explore the new world !
*
*Link to the original text ==>http://sylblog.xin/archives/100
*
Preface
I opened the code I had knocked down in the past , This damn soulless code , Every function that's crooked says “ Copy and paste ” Four words . I can't sleep , After a close look at midnight , To see the words in the seam , Two words are written all over the screen “ Vegetable dog ”!!!
—— Lu xun ( false )
As an orientation CV Of CSS+JS The programmer , What I do most often , Just assign and paste , I learned something before . There is no systematic learning .CSS There are probably two attributes about text selection in ! One **::selection** , the other one 「user-select」
::selection
::selction It is used to emphasize the content selected by the user by clicking or dragging the mouse .
It's easy to use :
p::selection {
color: rgba(255, 255, 0, 1);
background-color: rgba(128, 128, 192, 1);
}

at present ::selection Only the following properties are supported :
colorbackground-colortext-decorationAnd its related propertiestext-shadowstroke-color,fill-colorandstroke-width
Although the supported properties are , However, we can use these attributes to make some interesting choices .
Example - Selected emphasis
Mainly used text-shadow Shadow the text , When the text is selected , Show effect .
p::selection {
color: rgba(255, 255, 0, 1);
background-color: rgba(128, 128, 192, 1);
text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

「PS: more text-shadow Produced text effect , You can see :https://juejin.cn/post/7028956229925863455」
user-select
user-select It mainly controls the selection of users , For example, text cannot be selected , Partial selection, etc !
The main attribute values are :
none, auto, text, contain, all
「 For specific usage, you can see :https://juejin.cn/post/7022939685978636302」
run into sb. pointer-events:none;
When the element is set pointer-events:none, Causes the element to never become a mouse event target. I thought at first , Even when the element is set user-select Is selectable , as long as pointer-events:none; In the end, you still can't select . But the result is the opposite :
The following code , Setting elements can all be selected , however pointer-events:none;. The end result of the experiment is , Text can be selected .
p::selection {
pointer-events: none;
user-select: all;
}
The element will never become a mouse event target. however , When its descendant element pointer-events Property specifies a different value , Mouse events can point to descendant elements , under these circumstances , The mouse event will trigger the event listener of the parent element during the capture or bubble phase .
JS Real time statistical length
js Use in .addEventListener("selectionchange"), To listen to the event selected by the text .window.getSelection().toString() Used to get the selected text .
Take the following example , When text is selected , The length of the selected text can be displayed in real time .
<p>
</p>
<p id="showConut"></p>
<script>
const showConut = document.getElementById("showConut");
const handleSelectionChange = (event) => {
let selection = window.getSelection().toString();
showConut.textContent = `(${selection.length} character )`;
return;
};
document.addEventListener("selectionchange", handleSelectionChange);
</script>

Postscript
Man , Learning things still needs to be systematic . It's probably not possible to do scattered things . This article only summarizes my choice of text , Some knowledge learned . If there is a new usage and scene in the future , Will sort it out !
This paper is written by mdnice Multi platform Publishing
边栏推荐
- VC下Unicode和ANSI互转,CStringW和std::string互转
- 整形和浮点型是如何在内存中的存储
- Halcon and WinForm study section 1
- Reading notes of "micro service design" (Part 2)
- [系统安全] 四十三.Powershell恶意代码检测系列 (5)抽象语法树自动提取万字详解
- Second kill system 3 - list of items and item details
- Jvm-09 byte code introduction
- 《微服务设计》读书笔记(上)
- The wonderful use of do{}while()
- Jvm-05-object, direct memory, string constant pool
猜你喜欢

Popular understanding of linear regression (II)

Visual upper system design and development (Halcon WinForm) -3 Image control

Jvm-05-object, direct memory, string constant pool

Intelij idea efficient skills (III)

Detailed explanation of string function and string function with unlimited length

视觉上位系统设计开发(halcon-winform)

Microservice API gateway

Visual upper system design and development (Halcon WinForm) -5 camera

Popular understanding of ovo and ovr

Introduction to redis master-slave, sentinel and cluster mode
随机推荐
Go语言自学系列 | golang中的if else语句
Microservice - fuse hystrix
QT common sentence notes
Kubernetes will show you from beginning to end
Kubernetes advanced training camp pod Foundation
Seckill system 2 redis solves the problem of distributed session
Secsha system 1- login function
Halcon and WinForm study section 1
Visual upper system design and development (Halcon WinForm) -1 Process node design
大csv拆分和合并
Puppet automatic operation and maintenance troubleshooting cases
Visual upper system design and development (Halcon WinForm) -3 Image control
Unity function - unity offline document download and use
如何使用 @NotNull等注解校验 并全局异常处理
Halcon and WinForm study section 2
Popular understanding of gradient descent
子类隐藏父类的同名函数
Backtracking method to solve batch job scheduling problem
Redis cache penetration, cache breakdown, cache avalanche solution
Atlas atlas torque gun USB communication tutorial based on mtcom