Created
April 29, 2021 16:33
-
-
Save AlexGStapleton/b8244ff5d49fb14e99c8110e444868a0 to your computer and use it in GitHub Desktop.
SiteOrigin Hero: Ken Burns Animation (values are examples)
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
.so-hero-kenburns .sow-slider-image.cycle-slide-active { | |
animation: 60s kenburns linear infinite alternate; | |
} | |
@keyframes kenburns{ | |
0% { | |
background-size: 75%; | |
background-position: right 25%; | |
} | |
25% { | |
background-size: 80%; | |
background-position: left 50%; | |
} | |
50% { | |
background-size: 85%; | |
background-position: right 75%; | |
} | |
75% { | |
background-size: 90%; | |
background-position: center 100%; | |
} | |
100% { | |
background-size: 95%; | |
background-position: left 55%; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment