make blinking the search result hightlight

Tips submitted by PHPMaker users
Post Reply
amiens80
User
Posts: 450

make blinking the search result hightlight

Post by amiens80 »

hi,

when you make a quick search, you have a hightligh option.
by default, it is just Yellow background but you can make it blinking.

Just add in the CSS :

.ew-highlight-search {
animation: blinker 1s linear infinite;
}
@keyframes blinker {
50% {
opacity: 0;
}
}


enjoy ;-)

Post Reply