Last active
October 22, 2020 18:39
-
-
Save newtone/76e436942f9ad26f9fe328b838202d8a to your computer and use it in GitHub Desktop.
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
<h1>Some Text</h1> | |
<div class="split-text-container"> | |
<h1 data-text="Split Colors">Split Colors</h1> | |
</div> |
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
// Gradient Text | |
h1 { | |
background: linear-gradient(30deg, #9ED8DB 40%, #007B82 70%); | |
background-clip: text; | |
color: transparent; | |
} | |
// Animated Gradient Text | |
h1 { | |
background: radial-gradient(circle, #80ffc1 0%, #ff6161 100%); | |
background-clip: text; | |
color: transparent; | |
animation: animatedGradient 2s infinite ease; | |
animation-direction: alternate; | |
} | |
@keyframes animatedGradient { | |
from { | |
background-size: 100%; | |
} | |
to { | |
background-size: 250%; | |
} | |
} | |
// Image Background Text | |
h1 { | |
background: url('./image.jpg') no-repeat center center; | |
background-clip: text; | |
-webkit-background-clip: text; | |
color: transparent; | |
} | |
// Split Color Text | |
.split-text-container { | |
position: relative; | |
} | |
h1 { | |
color: #fff; | |
} | |
h1::before { | |
content: attr(data-text); | |
clip-path: polygon(0px 105%, 93% 0%, 100% 100%); | |
margin: 0; | |
color: #ff6161; | |
position: absolute; | |
top: 0; | |
left: 0; | |
right: 0; | |
pointer-events: none; /* Make text selectable */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment