js动态修改:after:before伪元素content值
2021-01-06 本文已影响0人
一岁倾城
今天做了一个有关js如何绑定动态修改伪类的content的内容,运用到的有( :before 和 :after 伪元素、CSS content 属性、data-* H5新属性、js)等技术。
基本原理:
1)首先给box盒子添加 [data-content-before=":before"]和[ data-content-after=":after"]属性;
2)其次添加html标签和style样式;
3)在样式里添加box元素的:before伪元素和:after 伪元素;
4):before伪元素和:after 伪元素里各自添加content属性;
5)content 和 attr 配合使用:
content: attr(data-content-after);
和content: attr(data-content-before);
这样content可以获取到box添加data-content-after属性里的值:after
(before同理)
6)最后通过js获取到box对象,通过box对象
attributes
找到添加的 [data-content-before=":before"]和[ data-content-after=":after"]属性的value,有了value值,这就可以进行动态修改 before伪元素和:after 伪元素里的content值;以此现在做一个笔记以便以后使用,Hope to help you.
废话不多说,直接上代码
一、html代码部分
<div id="box" data-content-before=":before" data-content-after=":after">box盒子</div>
二、css样式部分
<style>
*{
padding: 0;
margin: 0;
}
body{
padding: 0;
margin: 0;
}
#box{
width: 200px;
height: 200px;
position: fixed;
top: calc(50% - 100px);
left: calc(50% - 100px);
background: #0877FF;
border-radius: 10px;
text-align: center;
box-shadow: 1px 2px 3px -1px;
}
#box:after{
content: attr(data-content-after);
position: relative;
top: -120px;
left: -160px;
width: 104px;
height: 100px;
line-height: 100px;
text-align: center;
border-radius: 10px;
background: orange;
box-shadow: 1px 2px 3px -1px;
display: block;
}
#box:before{
content: attr(data-content-before);
position: relative;
top: 0;
right: -260px;
width: 104px;
height: 100px;
line-height: 100px;
text-align: center;
border-radius: 10px;
background: #39c778;
box-shadow: 1px 2px 3px -1px;
display: block;
}
</style>
三、js代码部分
<script type="text/javascript">
var box = document.getElementById('box');
var boxBeforeVal = box.attributes[1].value;
var boxAfterVal = box.attributes[2].value;
//console.log(boxBefore);//输出为 :before
//console.log(boxAfter);//输出为 :after
//下面可以自定义boxBeforeVal和boxAfterVal的值
box.attributes[1].value = ':before伪元素';
box.attributes[2].value = ':after伪元素';
</script>
四、效果图
刷新页面前.png 刷新页面后.png