Created
August 30, 2023 07:06
-
-
Save yusufneeson/d824d06c3753be599a9b32a1d1813503 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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <link rel="stylesheet" href="styles.css"> | |
| <title>Background Slide Hover Effect</title> | |
| </head> | |
| <body> | |
| <div class="slide-hover">Ini adalah contoh teks dengan efek background slide hover.</div> | |
| </body> | |
| </html> |
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
| .slide-hover { | |
| display: inline-block; | |
| position: relative; | |
| color: #000; /* Warna teks */ | |
| background-image: linear-gradient(90deg, transparent, transparent 50%, #FFFF99 50%, #FFFF99); | |
| background-size: 200% 100%; | |
| transition: background-position 1s; | |
| } | |
| .slide-hover:hover { | |
| background-position: -100% 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment