I'm attempting to enhance my submit button with :after/:before elements, but I'm having trouble getting it to work properly.
Specifically, I want to add a swipe (Sweep To Right) transition effect on the button from left to right. Similar to - this example
<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;}