blink on hover
by Felis Catus
HTML
<div class="test">
</div>
SCSS
.test {
transition: opacity 1s cubic-bezier(.5,-160,.5,-150);
opacity: 1;
width: 200px;
height: 200px;
background: red;
&:hover {
opacity: 0.99;
transition: opacity 1s cubic-bezier(.5,150,.5,150);
}
}