Created
November 20, 2020 06:38
-
-
Save elicus/ed88c5e258734a398ad5fd84e72cb081 to your computer and use it in GitHub Desktop.
Text over an image on hover
This file contains hidden or 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
.clip-image-hover p { | |
transition: background-image 300ms ease 0ms; | |
background-repeat: no-repeat; | |
background-position: left; | |
background-size: cover; | |
-webkit-background-clip: text; | |
-webkit-text-fill-color: #FFFFF; | |
} | |
.clip-image-hover p:hover { | |
background-repeat: no-repeat; | |
background-position: center; | |
background-size: cover; | |
background-image: url('Input Image URL'); | |
-webkit-background-clip: text; | |
-webkit-text-fill-color: transparent; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment