Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

211
Views
How to make browser icon highlight or blink on taskbar when notification are arrive using JavaScript/HTML?

I want to make browser icon highlight when notification or message are arrived. I need to implement it in my angular project. So any suggestion how to achieve it?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

on css

   @-webkit-keyframes blinker {  
      0% { opacity: 1.0; }
      50% { opacity: 0.0; }
      100% { opacity: 1.0; }
    }

    .blink {
      width: 10px;
      height: 10px;
      border-radius: 10px;
      animation: blinker 2s linear infinite;
      background-color: red;
      margin-right: 5px;
    }
    
    .main-content {
      display: flex;
      flex-direction: row;
      align-items: center;
    }

on html

     <div class="main-content">
      <i class="blink"></i>
     </div>

@-webkit-keyframes blinker {  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

.blink {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  animation: blinker 2s linear infinite;
  background-color: red;
  margin-right: 5px;
}

.content {
  display: flex;
  flex-direction: row;
  align-items: center;
}
<div class="content">
  <i class="blink"></i>
</div>

   

for blink just use @-webkit-keyframes blinker and set the delay according choice

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!