Your url is not working.Pls visit www.jobvision.com. In that url button blinking like that i want
www.jobvission.in pls tryYour url is not working.
https://www.jobvision.in/ pls tryYour url is not working.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Blinking Dot</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
* {
margin: 0;
padding: 0;
}
.main {
width: 100%;
height: 100vh;
}
.icon {
width: 100%;
height: 3rem;
background-color: #ED4250;
display: flex;
align-items: center;
}
.icon > a {
position: relative;
margin-left: 2rem;
color: #fff;
background: transparent;
}
.dot {
position: absolute;
width: 10px;
height: 10px;
border-radius: 50%;
top: -5px;
left: -1px;
box-shadow: 1px 1px 10px #000;
animation: 0.5s blink ease infinite;
}
@keyframes blink {
from, to {
opacity: 0.5;
background-color: #000;
}
50% {
opacity: 1;
background-color: #86D9D8;
}
}
</style>
</head>
<body>
<div class="main">
<div class="icon icon-star-bg" role="img" aria-label="Favorite">
<a href="#"><span class="dot"></span><i class="fa fa-bell"></i></a>
</div>
</div>
</body>
</html>
sorry , Email register blinking button on below pageThere are no blinking button like you said, but there is a bell icon with a blinking dot on it. If you are talking about that than here is your blinking button -
HTML:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Blinking Dot</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <style> * { margin: 0; padding: 0; } .main { width: 100%; height: 100vh; } .icon { width: 100%; height: 3rem; background-color: #ED4250; display: flex; align-items: center; } .icon > a { position: relative; margin-left: 2rem; color: #fff; background: transparent; } .dot { position: absolute; width: 10px; height: 10px; border-radius: 50%; top: -5px; left: -1px; box-shadow: 1px 1px 10px #000; animation: 0.5s blink ease infinite; } @keyframes blink { from, to { opacity: 0.5; background-color: #000; } 50% { opacity: 1; background-color: #86D9D8; } } </style> </head> <body> <div class="main"> <div class="icon icon-star-bg" role="img" aria-label="Favorite"> <a href="#"><span class="dot"></span><i class="fa fa-bell"></i></a> </div> </div> </body> </html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Blinking Dot</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
* {
margin: 0;
padding: 0;
}
.main {
width: 100%;
height: 100vh;
}
.icon {
width: 100%;
height: 3rem;
background-color: #ED4250;
display: flex;
align-items: center;
}
.icon > a {
position: relative;
margin-left: 2rem;
color: #fff;
background: transparent;
}
.dot {
position: absolute;
width: 10px;
height: 10px;
border-radius: 50%;
top: -5px;
left: -1px;
box-shadow: 1px 1px 10px #000;
animation: 0.5s blink1 ease infinite;
}
@keyframes blink1 {
from, to {
opacity: 0.5;
background-color: #000;
}
100% {
opacity: 1;
background-color: #86D9D8;
}
}
.email-btn {
margin: 2rem 5rem;
}
button {
background: #027d67;color:#fff;
font-size: 16px;
font-weight: bold;
padding: 10px 15px;
border: none;
border-radius: 23px;margin:5px;
cursor: pointer;
animation: blink2 1s infinite;
}
button:hover {
background: #560111;
box-shadow: 0 0 5px #000;
animation: none
}
button > .fa-envelope {
margin-right: 1rem;
}
@keyframes blink2 {
0% {
box-shadow:0 0 0 0 #3DA252;
}
100% {
box-shadow:0 0 0 12px transparent;
}
}
</style>
</head>
<body>
<div class="main">
<div class="icon icon-star-bg" role="img" aria-label="Favorite">
<a href="#"><span class="dot"></span><i class="fa fa-bell"></i></a>
</div>
<div class="email-btn">
<button><i class="fa fa-envelope" aria-hidden="true"></i> Email Register</button>
</div>
</div>
</body>
</html>
We use essential cookies to make this site work, and optional cookies to enhance your experience.