HEY DEVELOPERS,
In this article we are going to Create Rainbow button using HTML CSS JS (SOURCE CODE AVAILIABLE)
PREVIEW
SOURCE CODE
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
html {
background: #000;
}
p {
text-align: center;
margin-top: 150px;
}
button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border: 0;
font-size: 14px;
padding: 25px 45px;
display: inline-block;
color: #fff;
text-transform: uppercase;
border-radius: 500px;
font-weight: bold;
font-family: Arial;
background: linear-gradient(90deg, #ff6f61, #ff8777, #ff98a0, #ffabda, #d7a2f5, #d7a2f5, #7ca5de, #3e73bd);
background-size: 1800% 100%;
-webkit-animation: rainbow 5s linear infinite;
animation: rainbow 5s linear infinite;
}
@-webkit-keyframes rainbow {
0% {
background-position: 200% 0;
}
100% {
background-position: -200% 0;
}
}
@keyframes rainbow {
0% {
background-position: 200% 0;
}
100% {
background-position: -200% 0;
}
}
/* -- YouTube Link Styles -- */
#source-link {
top: 60px;
}
#source-link>i {
color: rgb(94, 106, 210);
}
#yt-link {
top: 10px;
}
#yt-link>i {
color: rgb(219, 31, 106);
}
.meta-link {
align-items: center;
backdrop-filter: blur(3px);
background-color: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 6px;
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
cursor: pointer;
display: inline-flex;
gap: 5px;
left: 10px;
padding: 10px 20px;
position: fixed;
text-decoration: none;
transition: background-color 600ms, border-color 600ms;
z-index: 10000;
}
.meta-link:hover {
background-color: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.meta-link>i,
.meta-link>span {
height: 20px;
line-height: 20px;
}
.meta-link>span {
color: white;
font-family: "Rubik", sans-serif;
transition: color 600ms;
}
</style>
</head>
<body>
<p><button>Rainbow Button</button></p>
<!--Social Liks codings below-->
<a id="source-link" class="meta-link" href="https://t.me/+7yc_oGHnLJhlOWVl" target="_blank">
<i class="fas fa-link"></i>
<span class="roboto-mono">Join my Telegram</span>
</a>
<a id="yt-link" class="meta-link" href="https://www.youtube.com/@codewith_muhilan?sub_confirmation=1" target="_blank">
<i class="fab fa-youtube"></i>
<span>Subscribe my channel..❤</span>
</a>
</body>
</html>