mirror of
https://github.com/CTalvio/Ultrachromic
synced 2026-01-15 13:52:53 -03:00
New effect, padding tweak
This commit is contained in:
27
effects/pan-animation.css
Normal file
27
effects/pan-animation.css
Normal file
@@ -0,0 +1,27 @@
|
||||
@keyframes backgroundScroll {
|
||||
0% {
|
||||
background-position: 99% 1%;
|
||||
}
|
||||
20% {
|
||||
background-position: 1% 50%;
|
||||
}
|
||||
40% {
|
||||
background-position: 99% 99%;
|
||||
}
|
||||
60% {
|
||||
background-position: 1% 1%;
|
||||
}
|
||||
80% {
|
||||
background-position: 50% 99%;
|
||||
}
|
||||
100% {
|
||||
background-position: 99% 1%;
|
||||
}
|
||||
}
|
||||
|
||||
.backdropImage {
|
||||
background-size: 150% 150%;
|
||||
background-position: 99% 1%;
|
||||
animation: backgroundScroll 210s ease;
|
||||
animation-iteration-count: infinite;
|
||||
}
|
||||
Reference in New Issue
Block a user