oelna / hsma-html

Kursmaterialien für meinen Kurs Offenes Projekt: HTML aka. "VSTG" an der Hochschule Mannheim
7 stars 0 forks source link

CSS Gradients (Farbverläufe) #82

Open oelna opened 3 years ago

oelna commented 3 years ago

https://www.youtube.com/watch?v=f3mwKLXpOLk

oelna commented 2 years ago
@keyframes sponsors-progress-animation {
    0% {
        background-position: 100%
    }

    to {
        background-position: 0
    }
}
.x {
    animation: sponsors-progress-animation 2s linear infinite;
    background: linear-gradient(90deg,#ffd33d,#ea4aaa 17%,#b34bff 34%,#01feff 51%,#ffd33d 68%,#ea4aaa 85%,#b34bff);
    background-size: 300% 100%;
    cursor: pointer;
}

from https://github.com/sponsors/willmcgugan

oelna commented 2 years ago

smoother/vivid gradients generator https://learnui.design/tools/gradient-generator.html

oelna commented 2 years ago

add noise to gradients via SVG https://css-tricks.com/grainy-gradients/

oelna commented 2 years ago

https://components.ai/gradient/