Rainbow Button
HTML CODE:-
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title></title> </head> <body> <a href="#" class="container">Saksham Digital</a> </div> </body> </html> |
CSS CODE:-
body{ padding: 0px; margin: 0px; min-height: 100vh; display: flex; align-items: center; justify-content: center; background-color: black; } .container{ padding: 10px 20px; cursor: pointer; font-weight: bold; color: white; border-radius: 5px; background-color: #343a40; text-decoration: none; } .container:hover{ background-image: linear-gradient(to right, red, orange, yellow, green, blue, indigo, red); animation: animate 2s linear infinite; } @keyframes animate{ from{ background-position: 0vw; } to{ background-position: 20vw; } } |