当我们在阅读某些文章时,会看到一些比较精彩的语句急于分享,下面分享一个选中文字分享的功能,实现类似于下面的效果。
以下是代码实现:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>原生JS实现选中文字分享</title>
<style>
#content {
width: 300px;
margin: 50px;
}
#box {
position: absolute;
display: none;
width:30px;
height:30px;
}
#box img{
width: 100%;
height:100%;
}
</style>
</head>
&l