Skip to content

Instantly share code, notes, and snippets.

@wpflames
Created August 29, 2020 17:07
Show Gist options
  • Select an option

  • Save wpflames/323443251329a0fe3832f093ab8340fd to your computer and use it in GitHub Desktop.

Select an option

Save wpflames/323443251329a0fe3832f093ab8340fd to your computer and use it in GitHub Desktop.
Button with Direction Aware Hover Effect - HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Direction Aware Button Ripple Effects</title>
<link rel="stylesheet" href="assets/css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;800&display=swap" rel="stylesheet">
</head>
<body>
<section>
<div class="box">
<div class="imgBx">
<img src="images/rockstar.jpg" alt="singer">
</div>
<div class="buttons">
<a id="btn-1" href="#">Concerts</a>
<a id="btn-2" href="#">Discography</a>
</div>
</div>
</section>
<script src="assets/js/script.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment