Skip to content

Instantly share code, notes, and snippets.

@yusufneeson
Created August 30, 2023 07:06
Show Gist options
  • Select an option

  • Save yusufneeson/d824d06c3753be599a9b32a1d1813503 to your computer and use it in GitHub Desktop.

Select an option

Save yusufneeson/d824d06c3753be599a9b32a1d1813503 to your computer and use it in GitHub Desktop.
<!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>
.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