Button w/ Hover On Effect:
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 31 32 33 34 35 36 37 38 39 |
selector .elementor-button { display: inline-block; position: relative; } selector .elementor-button:before { background-color: #f79e3b; content: ""; display: block; height: 100%; left: 125px; opacity: 0; position: absolute; top: 0; transition: all 300ms ease-in-out; width: 40px; z-index: -1; } selector .elementor-button:after { background-color: #faec33; content: ""; display: block; height: 100%; left: 125px; opacity: 0; position: absolute; top: 0; transition: all 300ms ease-in-out; transition-delay: 100ms; width: 20px; z-index: -2; } selector .elementor-button:hover:before { left: 175px; opacity: 1; } selector .elementor-button:hover:after { left: 221px; opacity: 1; } |
Button w/ Hover Off Effect:
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 31 32 33 34 35 36 37 38 39 | selector .elementor-button { display: inline-block; position: relative; } selector .elementor-button:before { background-color: #f79e3b; content: ""; display: block; height: 100%; left: 175px; opacity: 1; position: absolute; top: 0; transition: all 300ms ease-in-out; width: 40px; z-index: -1; } selector .elementor-button:after { background-color: #faec33; content: ""; display: block; height: 100%; left: 221px; opacity: 1; position: absolute; top: 0; transition: all 300ms ease-in-out; transition-delay: 100ms; width: 20px; z-index: -2; } selector .elementor-button:hover:before { left: 125px; opacity: 0; } selector .elementor-button:hover:after { left: 125px; opacity: 0; } |