单击图标后,我试图将图标从“添加”永久更改为“完成”。如果我再次单击该图标,它应该从“完成”变为“添加”。我想知道是否可以在不使用 Javascript 的情况下使用 CSS 来做到这一点。
.material-icons::before {
content: "add";
}
section:active .material-icons::before {
/*background-color: red;*/
content: "done";
}
<link href="https://fonts.googleapis.com/icon?family=Material+Icons|Open+Sans" rel="stylesheet">
<section>
<span id="btn1" class="material-icons"></span>
</section>