-
-
Save kobitoDevelopment/7d8a94f40a4606c61cfdbeaaa424898c to your computer and use it in GitHub Desktop.
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
| <a href="" class="text">テキストのみ色変更</a> |
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
| .text { | |
| color: transparent; | |
| font-size: 100px; | |
| font-weight: bold; | |
| background-image: linear-gradient(90deg, #1699cd 50%, #333 0); | |
| background-position: 100%; | |
| background-size: 200%; | |
| background-repeat: no-repeat; | |
| background-clip: text; | |
| -webkit-background-clip: text; | |
| transition: 0.6s; | |
| &:hover { | |
| transition: 0.6s; | |
| background-position: 0%; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment