【发布时间】:2019-09-21 17:01:21
【问题描述】:
我正在尝试在提交按钮上添加 :after/:before 元素,但它对我不起作用。
其实我需要在按钮上从左到右添加 swipe(Sweep To Right) 过渡效果。喜欢-https://ianlunn.github.io/Hover/
<input class="submitBtn" type="submit" name="" value="Submit">
.submitBtn{ position: relative; width: 100%; height: 50px; background: #000; text-align: center; color: #FFF; border: none;}
.submitBtn:after{ content: ''; position: absolute; width: 100%; height: 100%; background: yellow; left: 0; top: 0;}
【问题讨论】: