Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AlexGStapleton/b8244ff5d49fb14e99c8110e444868a0 to your computer and use it in GitHub Desktop.
Save AlexGStapleton/b8244ff5d49fb14e99c8110e444868a0 to your computer and use it in GitHub Desktop.
SiteOrigin Hero: Ken Burns Animation (values are examples)
.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