Created
June 27, 2022 06:04
-
-
Save anwerashif/6ba5211257b047e2747622a74c55c003 to your computer and use it in GitHub Desktop.
Elementor Progress Bar Animation CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.c-loading .elementor-progress-wrapper { | |
-webkit-animation-duration: 10s; | |
animation-duration: 7s; | |
-webkit-animation-iteration-count: infinite; | |
animation-iteration-count: infinite; | |
-webkit-animation-name: loading; | |
animation-name: loading; | |
-webkit-animation-timing-function: linear; | |
animation-timing-function: linear; | |
} | |
@keyframes loading { | |
from { padding-right: 45%; } | |
to { padding-right: 5%; } | |
} | |
.c-loading .elementor-progress-wrapper { | |
border: 2px solid #a09b9b; | |
height: 21px; | |
max-width: 375px; | |
width: 100%; | |
margin: 0 auto; | |
} | |
.c-loading .elementor-progress-bar { | |
transform: skewX(-40deg); | |
width: 100% !important; | |
height: 100% !important; | |
position: relative; | |
left: -10px; | |
} | |
.custom_bg { | |
backdrop-filter: blur(40px); | |
background: rgba(40,39,40,.8); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment