效果展示

就是修改一下任务前面的复选框,加一点万圣节元素,当然以后的节日里你也可以修改成其他相应的元素,比如春节就红灯笼和鞭炮。
代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| input[type=checkbox], input[type=checkbox]:checked, input[type=checkbox]::before, input[type=checkbox]:checked::before, input[type=checkbox]::after, input[type=checkbox]:checked::after { background: none; border: none; } input[type=checkbox] { position: relative; } input[type=checkbox]::before { position: absolute; top: -.2em; left: -.5em; content: '🎃'; width: 100%; text-align: center; font-size: 2em; line-height: 1em; } input[type=checkbox]:checked::before { content: '💀'; } input[type=checkbox]::after, input[type=checkbox]:checked:after { display: none; }
|