-
-
Save Spellhammer/e5b61896869ba448f2bec9b9b44730e3 to your computer and use it in GitHub Desktop.
CSS-Only Logo Slider
This file contains 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
body { | |
background: #FF5F6D; /* fallback for old browsers */ | |
background: -webkit-linear-gradient(to right, #FFC371, #FF5F6D); /* Chrome 10-25, Safari 5.1-6 */ | |
background: linear-gradient(to right, #FFC371, #FF5F6D); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ | |
} | |
body:not(.ng-scope) :is(.logo-slider, #incspec) { | |
flex-direction: row; | |
align-items: center; | |
overflow: hidden; | |
position: relative; | |
height: 100px; | |
--animationspeed: 30s; | |
--animationdelay: calc( var(--animationspeed) / 2 ); | |
} | |
body:not(.ng-scope) .logo-slide { | |
flex-shrink: 0; | |
position: absolute; | |
animation-name: slidelogo; | |
animation-duration: var(--animationspeed); | |
animation-timing-function: linear; | |
animation-iteration-count: infinite; | |
} | |
body:not(.ng-scope) .logo-slide.delay { | |
transform: translateX(100%); | |
animation-name: slidelogo; | |
animation-delay: var(--animationdelay); | |
} | |
/** Optional: Uncomment this if you'd like the slider to pause on hover. | |
.logo-slider:hover .logo-slide { | |
animation-play-state: paused; | |
} | |
**/ | |
@keyframes slidelogo { | |
from { | |
transform: translateX(100%); | |
} | |
to { | |
transform: translateX(-100%); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment