Skip to content

Instantly share code, notes, and snippets.

@scrouthtv
Created December 10, 2022 23:47
Show Gist options
  • Save scrouthtv/a51609121d5af19415e7222a3bcdbf9b to your computer and use it in GitHub Desktop.
Save scrouthtv/a51609121d5af19415e7222a3bcdbf9b to your computer and use it in GitHub Desktop.
Add breathing effect to tabliss background image
.image {
animation-name: example;
animation-duration: 40s;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-timing-function: ease-in-out;
}
@keyframes example {
0% { transform: scale(1.0); }
100% { transform: scale(1.2); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment