How to make an icon flash/blink, which is present in a web page

后端 未结 3 1928
无人共我
无人共我 2021-01-25 10:55

I started working on advanced java few days before(too late to start on that, I know). I am stuck with a specific task of making an icon (which is present on the task bar) blink

3条回答
  •  春和景丽
    2021-01-25 11:08

    Small fix

    instead

    if(img.display == 'hidden')
    

    use

    if(img.style.visibility == 'hidden')
    

提交回复
热议问题